The Submit object represents a submit button in an HTML form.
Clicking on a submit button sends the named contents of the form to the server.
For each <input type="submit"> tag in an HTML form, a Submit object is created.
You can access a submit button by searching through the elements[] array of the form, or by using document.getElementById().
Tip: Clicking on a submit button fires the onsubmit event!
Note: The Submit object can also use the properties/methods of:
W3C: W3C Standard.
| Property | Description | W3C |
|---|---|---|
| disabled | Sets or returns whether the submit button is disabled, or not | Yes |
| form | Returns a reference to the form that contains the submit button | Yes |
| name | Sets or returns the value of the name attribute of a submit button | Yes |
| type | Returns which type of form element the submit button is | Yes |
| value | Sets or returns the value of the value attribute of the submit button | Yes |
The Submit object also supports the standard properties and events.
Your message has been sent to W3Schools.