Input Hidden type Property
Example
Find out which type of form element the hidden input field is:
var x = document.getElementById("myInput").type;
The result of x will be:
hidden
Try it yourself »
Definition and Usage
The type property returns which type of form element the hidden input field is.
For a hidden object this will always be "hidden".
Browser Support
The type property is supported in all major browsers.
Syntax
hiddenObject.type
Return Value
Type | Description |
---|---|
String | The type of form element the hidden input field is |
Input Hidden Object