Skip to main content
Stack Overflow
  1. About
  2. For Teams

Return to Answer

Post Undeleted by Community Bot
Post Deleted by Community Bot
added 38 characters in body
Source Link
user2131877
  • 57.1k
  • 22
  • 261
  • 268
  1. 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();
  1. or use button click after 2second:

    setInterval(function () {document.getElementById("myButtonId").click();}, 2000);
  1. with the following, (while page is laoded), the form will be immediately autosubmited

    document.forms["FORM_NAME"].submit();

or use:

document.forms[0].submit();
  1. or use button click after 2second:

    setInterval(function () {document.getElementById("myButtonId").click();}, 2000);
  1. 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();
  1. or use button click after 2second:

    setInterval(function () {document.getElementById("myButtonId").click();}, 2000);
Source Link
user2131877
  • 57.1k
  • 22
  • 261
  • 268
  1. with the following, (while page is laoded), the form will be immediately autosubmited

    document.forms["FORM_NAME"].submit();

or use:

document.forms[0].submit();
  1. or use button click after 2second:

    setInterval(function () {document.getElementById("myButtonId").click();}, 2000);
default

AltStyle によって変換されたページ (->オリジナル) /