with the following, (while page is laodedloaded), the form will be immediately autosubmited
document.forms["FORM_NAME"]forms["FNAME"].submit();
or useanother formSubmit alternative - submits any script:
document.forms[0].submit();
or use button click after 2second:
setInterval(function () {document.getElementById("myButtonId").click();}, 2000);
with the following, (while page is laoded), the form will be immediately autosubmited
document.forms["FORM_NAME"].submit();
or use:
document.forms[0].submit();
or use button click after 2second:
setInterval(function () {document.getElementById("myButtonId").click();}, 2000);
with the following, (while page is loaded), the form will be immediately autosubmited
document.forms["FNAME"].submit();
another formSubmit alternative - submits any script:
document.forms[0].submit();
or use button click after 2second:
setInterval(function () {document.getElementById("myButtonId").click();}, 2000);
with the following, (while page is laoded), the form will be immediately autosubmited
document.forms["FORM_NAME"].submit();
or use:
document.forms[0].submit();
or use button click after 2second:
setInterval(function () {document.getElementById("myButtonId").click();}, 2000);