Created
July 2, 2012 14:25
-
-
Save padolsey/3033511 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
Seems identical. I still found
getText
useful because it can easily be modified to also traverse shadow roots (by changingnode = node.firstChild
tonode = node.firstChild || node.shadowRoot?.firstChild
)