Re: XML Tips The HTML DOM
The HTML DOM (HTML Document Object Model) defines a standard way for accessing and manipulating HTML documents.
All HTML elements can be accessed through the HTML DOM.
In the example below we use the following DOM reference to change the text of the HTML element where id="to":
document.getElementById("to").innerHTML=
* document - the HTML document
* getElementById("to") - the HTML element where id="to"
* innerHTML - the inner text of the HTML element
__________________ V.Vadivelan There never a wrong time to do the right thing. |