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!

multiple form -tags

Status
Not open for further replies.

JeroenB

Programmer
Apr 8, 2001
93
BE
I want to use in my html page multiple form tags with the same name; for instance : <form method=&quot;post&quot; name=&quot;Regisform&quot; action&quot;&quot; onSubmit=&quot;return checkPw(this)&quot;>
Cause when I put for every input box a form tag; I can solve multiple conflicts between tables and form-tags in Netscape.
The only thing I want to know is, if this causes no probs in the results of my form. I do not want to replace the value of a textbox with the value of the box standing before it ....
 
I'm not sure I follow you but I would suggest using this:

document.forms[ index_of_form]
... to retrieve your form info.

This avoids conflicts with names and makes good use of javascript.

Later. I hope this helped! ;-)
- Casey Winans
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top