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

Input Password type Property

❮ Input Password Object

Example

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

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

Definition and Usage

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