Open In App

HTML | DOM Input Password name Property

The DOM Input Password name Property is used to set or return the value of the name attribute of a Password Field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all.

Syntax:  



passwordObject.name
passwordObject.name = name

Property Values:  

Return Value: It returns a String value which represents the name of the Password Field.



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 name Property</h2>
    <form id="myGeeks">
        Password:
          <input type="password"
            id="myPsw"
            name="Geeks">
    </form>
    <br><br>
    <button onclick="myFunction()">
        Click Here!
    </button>
    <p id="demo" style="color:green;font-size:25px;"></p>
 
    <script>
      // return name of Input Password field
        function myFunction() {
            var x =
            document.getElementById(
            "myPsw").name;
             
            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 name Property</h2>
    <form id="myGeeks">
        Password:
          <input type="password"
            id="myPsw"
            name="Geeks">
    </form>
    <br><br>
    <button onclick="myFunction()">
        Click Here!
    </button>
    <p id="demo" style="color:green;font-size:20px;"></p>
 
    <script>
     // change the  name of Input Password field
 
        function myFunction() {
            var x =
            document.getElementById(
            "myPsw").name = "myGeeks";
             
            document.getElementById(
            "demo").innerHTML =
        "The Value of the name attribute" +
        " was changed to :" + x;
                 
        }
    </script>
</body>
</html>

Output: 
Before clicking on the button: 

After clicking on the button: 

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


Article Tags :