Skip to content

Instantly share code, notes, and snippets.

@mgrandrath
Forked from padolsey/gist:3033511
Created July 6, 2012 07:15
Show Gist options
  • Save mgrandrath/3058583 to your computer and use it in GitHub Desktop.
Save mgrandrath/3058583 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment