HTML DOM Input Text type Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Text type Property

❮ Input Text Object

Example

Find out which type of form element the text field is:

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

Definition and Usage

The type property returns which type of form element a text field is.

For a text field, this property will always return "text".


Browser Support

Property
type Yes Yes Yes Yes Yes

Syntax

textObject.type

Return Value

Type Description
String The type of form element the text field is

❮ Input Text Object