Input Hidden type Property

❮ Input Hidden Object

Example

Find out which type of form element the hidden input field is:

var x = document.getElementById("myInput").type;
Try it Yourself »

Description

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
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.