Skip to content

Instantly share code, notes, and snippets.

@yeco
Created January 6, 2010 18:56
Show Gist options
  • Save yeco/270524 to your computer and use it in GitHub Desktop.
Save yeco/270524 to your computer and use it in GitHub Desktop.
function getTextValue(n)
{
var s = '';
for (var c=0;c<n.childNodes.length;c++)
{
s+=n.childNodes[c].nodeValue;
}
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment