Input Hidden type Property
Example
Find out which type of form element the hidden input field is:
var x = document.getElementById("myInput").type;
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
Property | |||||
---|---|---|---|---|---|
type | Yes | Yes | Yes | Yes | Yes |
Syntax
hiddenObject.type
Return Value
Type | Description |
---|---|
String | The type of form element the hidden input field is |
❮ Input Hidden Object