Open In App

HTML DOM Area port Property

Improve
Improve
Like Article
Like
Save
Share
Report

The Area port Property in HTML DOM is used to set or return the port part of the href attribute. It is used i.e. href to specify the destination of the link in an area. 

Syntax:

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

Property Values: It contains a single value port that specifies the port number of the URL. 

Return Value: It returns a string value that represents the port number of the URL. 

Example 1: This example returns the Area pathname Property. 

HTML




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


Output: 

 

  Example 2: This example sets the Area port property. 

HTML




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


Output: 

 

  Supported Browsers:

  • Google Chrome
  • Firefox
  • Internet Explorer
  • Opera
  • Safari


Last Updated : 23 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads