How do I get the text \"there\" that comes after a tag in an html document:
hellothere
I see that the
Something like this?
var p = document.getElementsByTagName("p")[0]; alert(p.childNodes[1].textContent)