Open In App

HTML | DOM Input Password disabled Property

Last Updated : 25 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Password disabled Property is used to set or return the whether the Input Password Field must be disabled or not. A disabled Password Field is un-clickable and unusable. It is a boolean attribute and used to reflect the HTML Disabled attribute. It is usually rendered in grey color by default in all the Browsers. 

Syntax:

  • It is used to return the disabled property.
passwordObject.disabled
  • It is used to set the disabled property.
passwordObject.disabled = true|false

Property Values: 

  • true: It defines that the Input Password field is disabled.
  • False: It has a default value. It defines that the Input Password Field is not disabled.

Return Value: It returns a boolean value which represents that the Input Password Field is disabled or not. 

Example-1: This example illustrates how to return the property. 

HTML




<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input Password disabled Property</h2> Password:
    <input type="password"
        id="myPsw"
         disabled>
    <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").disabled;
             
            document.getElementById(
            "demo").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking On Button: 

 

After Clicking On Button:

  

Example-2: This example illustrates how to set the property. 

HTML




<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input Password disabled Property</h2> Password:
    <input type="password"
        id="myPsw"
         disabled>
    <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").disabled =false;
             
            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 disabled Property are listed below:

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


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads