Input Submit type Property
Example
Find out which type of form element the Submit button is:
var x = document.getElementById("mySubmit").type;
The result of x will be:
submit
Try it Yourself »
Definition and Usage
The type property returns which type of form element a submit button is.
For a submit button object, this property will always return "submit".
Browser Support
The type property is supported in all major browsers.
Syntax
submitObject.type
Return Value
Type | Description |
---|---|
String | The type of form element the submit button is |
Input Submit Object