How do I get the text \"there\" that comes after a tag in an html document:
hellothere
I see that the
Well if you use jQuery there is a sneaky way to get this
x = $("hellothere") x.contents()[1]
x = $("hellothere")
x.contents()[1]