<form action="/?wpmlmethod=offsite&list=2&wpmlformid=" method="post">
...
</form>
I tried:
<script type="text/javascript">document.forms[0].submit();</scrpit>
But it didn't work.
I tried:
But it didn't work. |
|||||
|
|
You should submit it on some
Update: As you said form is already filled, you want to submit it straight away, you can try this instead:
Note that |
|||||||||||
|
That said, you probably shouldn't be loading a page just to instantly submit a form with JS in the first place. You should have already had all the information needed on the server when you built the form. It smells of bad design and can break the back button. |
|||