Skip to content

Instantly share code, notes, and snippets.

@rudiedirkx
Created February 14, 2014 12:35
Show Gist options
  • Save rudiedirkx/9000268 to your computer and use it in GitHub Desktop.
Save rudiedirkx/9000268 to your computer and use it in GitHub Desktop.
Return child text nodes of a given Dom Element
Element.prototype.getTextNodes = function(trim) {
return [].slice.call(this.childNodes).filter(function(node) {
return node.nodeType == 3 && ( !trim || node.textContent.trim() != '' );
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment