I have a CouchDB view map function that generates an abstract of a stored HTML document (first x characters of text). Unfortunately I have no browser environmen
x
You can try this way. textContent with innerText neither of them compatible with all browsers:
textContent
innerText
var temp = document.createElement("div"); temp.innerHTML = html; return temp.textContent || temp.innerText || "";