Link to home
Start Free TrialLog in
Avatar of dda
ddaFlag for Russian Federation

asked on

"disabled" button

I tried to set the "disabled" property for <input type="button">, and it looks like Netscape (Navigator 4.08) ignores it. The same html code works fine with IE5 (buttons are disabled when "disabled" caluse presents).
What's wrong with Netscape?
Avatar of messentary
messentary

You will need to use the <form> tag for it to work in Netscape.  Just place <form> under the <body> tag and close it out ( </form> ) above the </body> tag.

Mess
ASKER CERTIFIED SOLUTION
Avatar of venkat_rs
venkat_rs

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dda

ASKER

Unfortunately, it looks like this...
Avatar of dda

ASKER

messentary,

thank you for your comment, but without <form> tag there is no button at al  in Netscape (IE is able to use form controls without <form> tag). The problem was about "disabled" attribute.