THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Hidden type Property

Input Hidden Object Reference Input Hidden Object

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

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 Reference Input Hidden Object