nested forms?
- Started
- Last post
- 2 Responses
- ldww
any experience with nested forms? i have a form with inputs in it, and inside it is 1 input encloded in another form. i want to be able to submit the inside form to a popup window, and also be able to submit the master form. is this possible?
- gabriel_pc0
you'll have to use javascript to accomplish this. technically you can't have a form nested within another form. If you need different fields within the same form submit to different pages I would recommend creating a second form consisting of hidden fields and then use javascript to populate it depending on what the user does.
- ldww0
is this along the right lines?
function verifyCoupon() {
var thevalue = document.form1.couponCode.value;
document.couponform.couponCodeHi... = var;
}and then how do i submit it ?