Skip to content

Instantly share code, notes, and snippets.

@padolsey
Created July 2, 2012 14:25
Show Gist options
  • Save padolsey/3033511 to your computer and use it in GitHub Desktop.
Save padolsey/3033511 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;
}
@tomaskikutis
Copy link

What is the difference between this and document.body.textContent ? Only browser support or there are other advantages ?

@ackinc
Copy link

ackinc commented Nov 18, 2024

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