Skip to content
Related Articles
Open in App
Not now

Related Articles

HTML | DOM Location port Property

Improve Article
Save Article
Like Article
  • Last Updated : 02 Sep, 2022
Improve Article
Save Article
Like Article

The HTML DOM Location Port property returns or sets the port number of the current URL. 

Syntax:

  • Get the port property:
  • Set the port property:

Property Value:

  • A String, to be assigned as port

Return Value:

  • A String, representing the port number of a URL.

Examples: 

HTML




<!DOCTYPE html>
<html>
<body>
    <h2>GeeksforGeeks</h2>
    <p id="demo"></p>
    <p><b>Note: </b>If the port number is default
      (80 for http and 443 for https),
      most browsers will display 0 or nothing.
    </p>
    <script>
        const url = document.createElement('a');
        url.setAttribute('href', 'http://example.com:12345/gfg');
 
        <!-- Return  Location port Property -->
        window.alert("The URL port number of the current page is: "
                     + url.port);
    </script>
</body>
</html>


Output :

  

Supported Browsers:

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 3
  • Firefox 1
  • Opera 12.1
  • Safari 1
My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!