Is there a way to change the DOM value of textNode in a web browser?
I specifically want to see if I can modify an existing node, and not create a new one.
To clarify, I need to do this using Javascript. All text in the browser is stored in #textNodes, which are child nodes of other HTML nodes but cannot have child nodes.
As shown below, the contents can be changed by setting the nodeValue property of these objects.
javascript dom dhtml
levik Mar 25 '09 at 6:25 2009-03-25 06:25
source share