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

Input Password type Property

Input Password Object Reference Input Password Object

Example

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

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

The result of x will be:

password
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 Reference Input Password Object