Open In App
Related Articles

HTML DOM Area username Property

Improve Article
Improve
Save Article
Save
Like Article
Like

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

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

Syntax:

  • It returns the Area username property.
 areaObject.username
  • It is used to set the Area username property.
areaObject.username = username

Property Values: It contains a single value username which specifies the username part of the URL. 

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

Example 1: This example returns the Area username Property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Area username Property
    </title>
</head>
 
 
<body>
    <h4> HTML DOM Area username Property </h4>
    <button onclick="GFG()">
          Click Here!
    </button>
    <map name="Geeks1">
        <area id="Geeks" shape="rect"
              coords="0, 0, 110, 100"
              alt="Geeks"
              href=
    </map>
    <img src=
         width="300" height="100"
         alt="Geeksforgeeks"
         usemap="#Geeks1">
    <br>
    <p id="GEEK!"></p>
 
    <script>
        function GFG() {
            // Return username property.
            let x =
            document.getElementById("Geeks").username;
            document.getElementById("GEEK!").innerHTML = x;
        }
    </script>
</body>
 
</html>


Output: 

 

Example 2: This example sets the Area username property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Area username Property
    </title>
</head>
 
<body>
    <h4>HTML DOM Area username Property</h4>
    <button onclick="GFG()">
          Click Here!
    </button>
    <map name="Geeks1">
        <area id="Geeks" shape="rect"
              coords="0, 0, 110, 100"
              alt="Geeks"
    </map>
 
    <img src=
         width="300" height="100"
         alt="Geeksforgeeks"
         usemap="#Geeks1">
    <br>
    <p id="GEEK!"></p>
 
    <script>
        function GFG() {
            // Set username property.
            let x =
            document.getElementById("Geeks").username = "abcxyz";
            document.getElementById("GEEK!").innerHTML =
                "The username has been changed to " + x;
        }
    </script>
</body>
 
</html>


Output: 

 

Supported Browsers:

  • Google Chrome
  • Firefox
  • Opera

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 23 Jun, 2023
Like Article
Save Article
Similar Reads
Related Tutorials