Skip to content

Instantly share code, notes, and snippets.

@padolsey
Created July 2, 2012 14:25
  • Star 7 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
function getText(node) {
if (node.nodeType === 3) {
return node.data;
}
var txt = '';
if (node = node.firstChild) do {
txt += getText(node);
} while (node = node.nextSibling);
return txt;
}
@tomaskikutis
Copy link

What is the difference between this and document.body.textContent ? Only browser support or there are other advantages ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment