Created
July 2, 2012 14:25
-
-
Save padolsey/3033511 to your computer and use it in GitHub Desktop.
This file contains 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; | |
} |
Seems identical. I still found getText
useful because it can easily be modified to also traverse shadow roots (by changing node = node.firstChild
to node = node.firstChild || node.shadowRoot?.firstChild
)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What is the difference between this and
document.body.textContent
? Only browser support or there are other advantages ?