I have 2 forms on one page, one is inside the other and attatched to a select box.
<form1...>
<form2...><select onchange=form2_submit>...</select></form>
<some input boxes>
</form>
The onchange of the select box calls a sub that does:
sub form2_submit
documnet.form2.submit
end sub
Is it possible to do this? I keep getting an error stating object does not support this method 'document.form2'
The id of the form attatched to the select box is form2.
Thanks in advance - Greg
<form1...>
<form2...><select onchange=form2_submit>...</select></form>
<some input boxes>
</form>
The onchange of the select box calls a sub that does:
sub form2_submit
documnet.form2.submit
end sub
Is it possible to do this? I keep getting an error stating object does not support this method 'document.form2'
The id of the form attatched to the select box is form2.
Thanks in advance - Greg