Javascript examples for DOM HTML Element:Area
Area shape Property - Get the shape 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 a 2 s . c o m <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myId").shape; document.getElementById("demo").innerHTML = x; } </script> </body> </html>