HTML DOM Input Button Object | HTML Dom Input Tutorial By WDH

HTML DOM 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

 


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".