getElementById
Posted: Wed Feb 23, 2005 6:07 pm
I have a <form> <input type=submit name=aaa id=aaa value=submit></form>.
In IE address bar, when i type
i get an empty alert box (empty string).
if i do
and then alert i get "hidden".
Is this normal?
In IE address bar, when i type
Code: Select all
getElementById('aaa').style.visibility='hidden'; alert(formsї0].aaa.style.visibility);if i do
Code: Select all
formsї0].aaa.style.visibility="hidden";Is this normal?