HTML DOM Area password Property

The Area password Property in HTML DOM is used to set or return the value of the password part of the href attribute. It is specified after the username and before the hostname. 

For example: https://manaschhabra:manaschhabra499@www.w3wiki.net/ (manaschhabra is the username and manaschhabra499 is the password). 

Syntax:

  • It return the Area password property.
 areaObject.password
  • It is used to set the Area password property.
areaObject.password = password

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

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

Example 1: This example returns the Area password Property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Area password Property
    </title>
</head>
 
<body>
    <h4>HTML DOM Area password Property</h4>
    <button onclick="GFG()">Click Here!
    </button>
    <map name="Beginner1">
        <area id="Beginner" shape="rect"
              coords="0, 0, 110, 100"
              alt="Beginner"
              href=
"https://manaschhabra:manaschhabra499@www.w3wiki.net/">
    </map>
    <img src=
"https://media.w3wiki.net/wp-content/uploads/a1-25.png"
         width="300" height="100"
         alt="w3wiki"
         usemap="#Beginner1">
    <br>
    <p id="GEEK!"></p>
 
    <script>
        function GFG() {
            // Return password property.
            let x =
            document.getElementById("Beginner").password;
            document.getElementById("GEEK!").innerHTML = x;
        }
    </script>
</body>
 
</html>


Output: 

 

Example 2: This example sets the Area password property. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Area password Property
    </title>
</head>
 
<body>
    <h4>HTML DOM Area password Property</h4>
    <button onclick="GFG()">
          Click Here!
    </button>
    <map name="Beginner1">
        <area id="Beginner" shape="rect"
              coords="0, 0, 110, 100"
              alt="Beginner"
              href=
"https://manaschhabra:manaschhabra499@www.w3wiki.net/">
    </map>
    <img src=
"https://media.w3wiki.net/wp-content/uploads/a1-25.png"
         width="300" height="100"
         alt="w3wiki"
         usemap="#Beginner1">
    <br>
    <p id="GEEK!"></p>
 
    <script>
        function GFG() {
            // Sets password property.
           let x =
            document.getElementById("Beginner").password = "abcxyz";
            document.getElementById("GEEK!").innerHTML =
                "The password has been changed to " + x;
        }
    </script>
</body>
 
</html>


Output: 

 

Supported Browsers:

  • Google Chrome
  • Firefox
  • Opera