Input Text type Property
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