Gets the content's text without HTML that is inside the body tag.
Counts the number of words that are inside the HTML body
=getOnPageBodyText(url)
| Name | Type | Description |
|---|---|---|
url |
string | URL to get text from |
| Column | Description |
|---|---|
Text thats in the body tag |
Cells:
A1: http://www.seerinteractive.com
=getOnPageBodyText(A1)
// Directly using a parameter instead of cell
=getOnPageBodyText("http://www.seerinteractive.com")
=getOnPageBodyWordCount(url)
| Name | Type | Description |
|---|---|---|
url |
string | URL that you want to get a word count from |
| Column | Description |
|---|---|
Number of words in the body |
Cells:
A1: http://www.seerinteractive.com
=getOnPageBodyWordCount(A1)
// Without using a cell
=getOnPageBodyWordCount("http://www.seerinteractive.com")
=getOnPageContent(url)
Gets the HTML content from a URL and puts the whole thing in a cell.
| Name | Type | Description |
|---|---|---|
url |
string | URL to get content from |
| Column | Description |
|---|---|
HTML content |
Cells:
A1: http://www.seerinteractive.com
=getHttpContent(A1)
// Directly using a parameter instead of cell
=getHttpContent("http://www.seerinteractive.com")