Open In App

HTML | DOM Input Password form Property

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

The DOM Input Password form Property is used for returning the reference of the form containing the input Password field. It is a read-only property that returns a form object on success. 

Syntax: 

passwordObject.form

Return Values: It returns a string value which specify the reference of the form containing the Input Password field

Below Program illustrates the Input Password form property.

Example: Returning the Input Password form Property.

HTML




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