fetching text from html page using javascript code example
Example: pull out only text from element javascript
function extractContent(html) {
return (new DOMParser).parseFromString(html, "text/html") .
documentElement . textContent;
}