THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Button type Property

Input Button Object Reference Input Button Object

Example

Return which type of form element the input button is:

var x = document.getElementById("myBtn").type;

The result of x will be:

button
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

Internet Explorer Firefox Opera Google Chrome Safari

The type property is supported in all major browsers.


Syntax

buttonObject.type

Technical Details

Return Value: A String, representing the type of form element the input button is

Input Button Object Reference Input Button Object