Input Password type Property
Example
Find out which type of form element the password field is:
var x = document.getElementById("myPsw").type;
Try it Yourself »
Description
The type property returns which type of form element a password field is.
For a password field, this property will always return "password".
Browser Support
Property | |||||
---|---|---|---|---|---|
type | Yes | 10.0 | Yes | Yes | Yes |
Syntax
passwordObject.type
Return Value
Type | Description |
---|---|
String | The type of form element the password field is |
❮ Input Password Object