Javascript examples for DOM HTML Element:Area
Area target Property - Get the target of a specific area in an image-map:
<!DOCTYPE html> <html> <body> <img src="http://java2s.com/resources/a.png" width="145" height="126" usemap="#myMap"> <map name="myMap"> <area id="myId" shape="circle" coords="125,60,10" alt="Venus" href="venus.htm"> </map>/*from w w w. j a v a2 s .c o m*/ <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myId").target; document.getElementById("demo").innerHTML = x; } </script> </body> </html>