Skip to content

Instantly share code, notes, and snippets.

@steida
Created April 21, 2009 14:30
Show Gist options
  • Save steida/99170 to your computer and use it in GitHub Desktop.
Save steida/99170 to your computer and use it in GitHub Desktop.
function getTextNodes(node) {
var tns = [];
(function walk(n) {
while (n) n.nodeType == 3 ? tns.push(n) : walk(n.firstChild), n = n.nextSibling;
})(node.firstChild);
return tns;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment