

- 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 search and display the pathname part of the href attribute of an area with JavaScript?
To get the pathname part of the href attribute of an area in JavaScript, use the pathname property.
Example
You can try to run the following code to display the pathname part.
<!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" target = "_self" > </map> <script> var x = document.getElementById("myarea").pathname; document.write("<br>Pathname: "+x); </script> </body> </html>
- Related Questions & Answers
- How to search the querystring part of the href attribute of an area in JavaScript?
- How to get the hash part of the href attribute of an area in JavaScript?
- How to get the port number part of the href attribute of an area in JavaScript?
- How to search the value of the href attribute of a link in JavaScript?
- HTML <area> href Attribute
- How to search the alternate text of an image-map area in JavaScript?
- How to search the value of the target attribute of a link in JavaScript?
- How to search the value of the type attribute of a link in JavaScript?
- How to find the href attribute of a link in a document in JavaScript?
- How to get the value of the usemap attribute of an image with JavaScript?
- How to set the painting area of the background with JavaScript?
- How to display the first part of the file in the Linux system?
- How to display the last part of the file in the Linux system?
- How to change the value of an attribute in javascript?
- How to set the positioning area of the background image with JavaScript?
Advertisements