Alf Stockton wrote:
Please tell the difference between:-
document.getElementById("Amount").innerHTML = " ";
and
document.getElementById("Amount").value = " ";
Not all DOM objects have an innerHTML attribute, and likewise not all of
them will have a value attribute. For example, <div> and <span> have
innerHTML, and <input> has value.
There are plenty of web-based resources that will tell you what
attributes different objects have. Google is your friend.
-Stut
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php