faqts : Computers : Internet : Web : HTML

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

8 of 12 people (67%) answered Yes
Recently 6 of 9 people (67%) answered Yes

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.