Skip to content

Instantly share code, notes, and snippets.

@padolsey
Created July 2, 2012 14:25
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save padolsey/3033511 to your computer and use it in GitHub Desktop.
Save padolsey/3033511 to your computer and use it in GitHub Desktop.
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