

- 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 the querystring part of the href attribute of an area in JavaScript?
To get the querystring of the href attribute of an area, use the search property. You can try to run the following code to search the querystring −
Example
<!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").search; document.write("<br>Querystring: "+x); </script> </body> </html>
- Related Questions & Answers
- How to search and display the pathname part of the href attribute of an area with 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 find the href attribute of a link in a document 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 change the value of an attribute in javascript?
- How to get the value of the usemap attribute of an image with JavaScript?
- Value of the class attribute node of an element in JavaScript?
- How to use href attribute in HTML Page?
- How to get an attribute value from a href link in selenium?
- How to get the value of the usemap attribute in JavaScript?
Advertisements