Entry
My button appears in IE but not Netscape, why? How do I prevent this?
Mar 17th, 2001 17:11
Daniel Barnes, Ryan Peterson,
I found that the following will solve your problem:
First, make sure you have a form element defined for your button.
Second, don't use the <button> tag, as Netscape doesn't support it.
Instead, use <input type="button">. The following is an example:
<form name="" action="" method="">
<input type="button" name="whatever" onclick="whatever" value="Click Me">
</form>
This will make the button appear in Netscape.