Input Button type Property
Example
Return which type of form element the input button is:
var x = document.getElementById("myBtn").type;
Try it Yourself »
Definition and Usage
The type property returns which type of form element the input button is.
For an input button this property will always return "button".
Browser Support
Property | |||||
---|---|---|---|---|---|
type | Yes | Yes | Yes | Yes | Yes |
Syntax
buttonObject.type
Technical Details
Return Value: | A String, representing the type of form element the input button is |
---|
❮ Input Button Object