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.

Revisions

  1. padolsey created this gist Jul 2, 2012.
    15 changes: 15 additions & 0 deletions gistfile1.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    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;

    }