Open In App

HTML | DOM Input Password required Property

The DOM Input Password required Property is used to set or return whether Input Password Field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute. 

Syntax: 



passwordObject.required
passwordObject.required = true|false

Property Values:

Return Value: It returns a Boolean value which represents that the Password Field must be filled or not before submitting the form.



Example-1: This Example illustrates how to return the Property. 




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

Output: 

Before clicking on the button:

  

After clicking on the button:

  

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




<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input Password required Property</h2>
    <form id="myGeeks">
     Password: <input type="password"
        id="myPsw"
          required>
         </form>
    <br><br>
    <button onclick="myFunction()">
        Click Here!
    </button>
    <p id="demo" style="color:green;font-size:20px;"></p>
    <script>
        function myFunction() {
            var x =
            document.getElementById(
            "myPsw").required = 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 required Property are listed below:


Article Tags :