

- 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 value of the usemap attribute of an image with JavaScript?
To get the value of the usemap attribute of an image, use the useMap property. You can try to run the following code to display the usemap attribute value −
Example
<!DOCTYPE html> <html> <body> <img id = "myid" src = "/images/html.gif" alt = "HTML Map" usemap = "#html"/> <map name = "html"> <area id = "myarea" shape = "circle" coords = "154,150,59" href = "about.htm" alt = "Team" > </map> <script> var x = document.getElementById("myid").useMap; document.write("<br>Usemap: "+x); </script> </body> </html>
- Related Questions & Answers
- How to get the value of the usemap attribute in JavaScript?
- How to change the value of an attribute in javascript?
- 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?
- How to get the value of the type attribute of a link in JavaScript?
- How to get the value of the id attribute a link in JavaScript?
- How to get the hash part of the href attribute of an area in JavaScript?
- How to get the value of id attribute in jQuery?
- How to get the value of src attribute in jQuery?
- How to get the value of custom attribute in jQuery?
- Value of the class attribute node of an element in JavaScript?
- How to use attr() method in jQuery to get the value of an attribute?
- How to get the port number part of the href attribute of an area in JavaScript?
- How to get an attribute value of an element in Selenium Webdriver?
Advertisements