HTMLFormElement.submit()
The HTMLFormElement.submit()
method submits a given <form>
.
This method is similar, but not identical to, activating a form's submit <button>
. When invoking this method directly, however:
- No
submit
event is raised. In particular, the form'sonsubmit
event handler is not run. - Constraint validation is not triggered.
The HTMLFormElement.requestSubmit()
method is identical to activating a form's submit <button>
and does not have these differences.
If a form control (such as a submit button) has a name
or id
of submit
, this method will mask the form's submit method.
<input>
with attribute type="submit" will not be submitted with the form when using HTMLFormElement.submit()
, but it would be submitted when you do it with original HTML form submit.
Syntax
HTMLFormElement.submit()
Example
document.forms["myform"].submit();
Specifications
Specification |
---|
HTML Standard (HTML) # dom-form-submit-dev |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
submit |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
1 |
18 |
4 |
≤12.1 |
1 |
1.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit