'ismap' Example : ismap « HTML Attributes Reference « HTML CSS Reference






'ismap' Example

    
<HTML>
<head>
<Title>Example For</Title>
<script language="JavaScript">
   function function1() {
      var x = document.getElementById("myimage").isMap;
      if (x == true) {
         alert("Yes"); 
      }
   }
</script>
</head>
<body>
  <img id="myimage" 
       src="http://www.java2s.com/style/logo.png" 
       width=300 
       height=100 
       usemap="#myMap"
       ismap="false">
       <map name="myMap">
         <area shape="rect" coords="0, 0, 100, 50" href=http://www.java2s.com>
         <area shape="rect" coords="200, 50, 300, 100" href="http://www.google.com">
       </map>
       <input type="button" value="Is this image a server-side map?" onClick="function1()">
</body>
<BODY>
</BODY>
</HTML>     
      
      








Related examples in the same category

1.'ismap' Syntax and Note
2.ismap is applied to