

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to get the port number part of the href attribute of an area in JavaScript?
To get the port number part of the href attribute of an area in JavaScript, use the port property.
Example
You can try to run the following code to get the port number. If the port number is the default 80, then some browsers will give the result 0 or nothing (blank) −
<!DOCTYPE html> <html> <body> <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/> <map name = "html"> <area id="myarea" shape = "circle" coords = "154,150,59" href = "about.htm?id=company" alt = "Team" target = "_self" > </map> <script> var x = document.getElementById("myarea").port; document.write("<br>Port Number: "+x); </script> </body> </html>
- Related Questions & Answers
- How to get the hash part of the href attribute of an area in JavaScript?
- How to search the querystring part of the href attribute of an area in JavaScript?
- How to search and display the pathname part of the href attribute of an area with JavaScript?
- How to search the value of the href attribute of a link in JavaScript?
- How to get the port number of the processes using PowerShell?
- HTML <area> href Attribute
- How to get the number of the internet host port for the current page in JavaScript?
- How to get the value of the usemap attribute of an image with JavaScript?
- How to find the href attribute of a link in a document in JavaScript?
- How to get the value of the usemap attribute in JavaScript?
- How to get an attribute value from a href link in selenium?
- How can I remove the decimal part of JavaScript number?
- How to get the value of the hreflang attribute of a link in JavaScript?
- How to get the value of the rel attribute of a link in JavaScript?
- How to get the value of the target attribute of a link in JavaScript?
Advertisements