FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

Input Text type Property

Input Text Object Reference Input Text Object

Example

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

var x = document.getElementById("myText").type;

The result of x will be:

text
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 Reference Input Text Object