To use the form submit javascript function you need to know the name of the form.
document.forms["myform"].submit();
or
document.myform.submit();
to submit
<form name="myform">...</form>
In my case i have a completely random name as form name. What I do know is that there is always only one form element present at the page. Any ideas to submit the form using javascript?
<form name="145f88f84584594">...</form>
document.formsholds all forms.This should work:
document.forms[0].submit();.