Open In App

HTML | DOM Input Password type Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Password type Property is used for returning which type of form element a password field is. This property will always return” password” for an input password field.

Syntax:  

passwordObject.type

Return Value: It returns a string value which represent the type of form element the password field is. 

Below program illustrates the Email type property:
Example: Returning the type of form element the Password field is.

HTML




<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input Password type Property</h2> Password:
    <input type="password"
        id="myPsw"
        value="geeks12">
    <br><br>
    <button onclick="myFunction()">
        Click Here!
    </button>
    <p id="demo" style="color:green;font-size:25px;"></p>
 
    <script>
        function myFunction() {
            var x =
            document.getElementById(
            "myPsw").type;
             
            document.getElementById(
            "demo").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 
Before clicking on the button: 

After clicking on the button: 

Supported Browsers: The browser supported by DOM input Password type Property are listed below: 

  • Google Chrome 1+
  • Edge 12+
  • Firefox 1+
  • Opera 2+
  • Safari 1+

Last Updated : 25 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads