Hi everyone,
Been struggling with this one all day - writing a vBulletin mod and am having trouble submitting a form. Yes, yes, I know, you submit forms with HTML, but a form instance is created before my form instance - something like:
<form name="main_form" etc>
<form name="my_form" etc>
<input button>
<input submit>
</form>
So I said, well, why not just do this:
Code:
<input type="submit" value="Order" onClick="document.my_form.submit()" /></form>
Yet apparently, no dice. Any help here guys?