Open In App

HTML | DOM Anchor password Property

Last Updated : 24 Oct, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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.geeksforgeeks.org/ (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>GeeksForGeeks</h1
          
        <h2>DOM Anchor Password Property</h2
          
        <p>Welcome to 
            <a href
            id="GFG"
                GeeksforGeeks 
            </a
        </p
          
        <button onclick = "myGeeks()">
            Submit
        </button
          
        <p id = "sudo" style="color:green;font-size:25px;"></p
          
        <!-- Script to return Anchor Password Property -->
        <script
            function myGeeks() { 
                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>GeeksForGeeks</h1
          
        <h2>DOM Anchor Password Property</h2
          
        <p>Welcome to 
            <a href
            id="GFG"
                GeeksforGeeks 
            </a
        </p
          
        <button onclick = "myGeeks()">
            Submit
        </button
          
        <p id = "sudo" style="color:green;font-size:25px;"></p
          
        <!-- Script to set Anchor Password Property -->
        <script
            function myGeeks() { 
                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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads