HTML | DOM Anchor password Property

The Anchor password Property in HTML DOM is used to set or return the password part of the href attribute value. The password part is entered by the user in the URL and it is specified after the username and the hostname.
For example: https://manaschh:manaschhabra499@www.w3wiki.net/ (manaschh is the username and manaschhabra499 is the password).

Syntax:

  • It return the Anchor password property.
    anchorObject.password
  • It is used to set the Anchor password property.
    anchorObject.password = password

Property Values: It contains single value password which specify the password part of the URL.

Return Value: It returns the string value which represents the password part of the URL.

Example 1: This example returns the Anchor password Property.




<!DOCTYPE html>
<html
  
<head
    <title
        HTML DOM Anchor Password Property 
    </title
</head
      
<body
    <center
        <h1>w3wiki</h1
          
        <h2>DOM Anchor Password Property</h2
          
        <p>Welcome to 
            <a href
"https://manaschh:manaschhabra499@www.w3wiki.net/" 
            id="GFG"
                w3wiki 
            </a
        </p
          
        <button onclick = "myBeginner()">
            Submit
        </button
          
        <p id = "sudo" style="color:green;font-size:25px;"></p
          
        <!-- Script to return Anchor Password Property -->
        <script
            function myBeginner() { 
                var x = document.getElementById("GFG").password; 
                document.getElementById("sudo").innerHTML = x; 
            
        </script
    </center
</body
  
</html>                                               


Output:
Before Clicking on Button:

After Clicking on Button:

Example 2: This example sets the Anchor Password Property.




<!DOCTYPE html>
<html
  
<head
    <title
        HTML DOM Anchor Password Property 
    </title
</head
      
<body
    <center
        <h1>w3wiki</h1
          
        <h2>DOM Anchor Password Property</h2
          
        <p>Welcome to 
            <a href
"https://manaschh:manaschhabra499@www.w3wiki.net/" 
            id="GFG"
                w3wiki 
            </a
        </p
          
        <button onclick = "myBeginner()">
            Submit
        </button
          
        <p id = "sudo" style="color:green;font-size:25px;"></p
          
        <!-- Script to set Anchor Password Property -->
        <script
            function myBeginner() { 
                var x = document.getElementById("GFG").password
                        = "Password is changed now!"; 
                  
                document.getElementById("sudo").innerHTML = x; 
            
        </script>
    </center
</body
  
</html>                    


Output:
Before Clicking on Button:

After Clicking on Button:

Supported Browsers: The browser supported by DOM Anchor Password property are listed below:

  • Google Chrome
  • Firefox
  • Opera