Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape help please. display:none does not submit form element

Status
Not open for further replies.

joelwenzel

Programmer
Jun 28, 2002
448
I'm having a problem in netscape. There are certain form elements which I have the display set to none. When I submit, the form elements (with display:none) are not submitted in netscape.

Is there some way around this? Is there some netscape command to submit elements that are not displayed?
 
Here's an idea...that probably won't work.

Could I change the type for the input....from say a textbox to hidden?
 
Hi,

Put the form code up and let us have a look.

Why have you set them to none for?

Cheers

James
 
Thanks

In IE, you will see ?textMe=asdf in the url. In netscape, it won't be there.

<html>
<body>
<form method=Get>
<input style=&quot;display:none&quot; type=text value=&quot;asdf&quot; name=&quot;testMe&quot;>
<input type=&quot;submit&quot; value=&quot;submit&quot;>
</form>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top