If the forms are nested ,i am not able to submit it in ie6

Posted by jaan on Stack Overflow See other posts from Stack Overflow or by jaan
Published on 2010-05-05T09:40:40Z Indexed on 2010/05/05 9:48 UTC
Read the original article Hit count: 245

Filed under:

If the forms are nested ,i'm not able to submit it in ie6

<html> <body> <form id="mainform" action="form_action.asp"> <form id="subform" action="form_action1.asp"> <input type="submit" name="FirstName12" value="Mickey" /><br /> </form> First name: <input type="text" name="FirstName" value="Mickey" /> <br/> Last name: <input type="text" name="LastName" value="Mouse" /> <br/> <input type="submit" value="Submit" /> </form> </body> </html>

I'm not able to submit the mainform using submit button in ie6. Not: But i can't avoid the nesting of forms.this code is just a sample

Thanks in advance!

© Stack Overflow or respective owner

Related posts about html