View Single Post
  #3 (permalink)  
Old 09-09-2008, 06:18 AM
KatherineJone KatherineJone is offline
WebProWorld New Member
 
Join Date: Sep 2008
Posts: 7
KatherineJone RepRank 0
Default Re: Manipulating imgmap?

<img src="images/shapes.jpg" width="375"
height="102" style="border: none;" alt="Shapes" usemap="#shapes"/>

<map name="shapes" id="shapes">

<area shape="circle"
coords="58,50,40"
href="javascript:clicked_on('circle');"
title="Circle" alt="Circle"/>

<area shape="rect"
coords="136,11,227,89"
href="javascript:clicked_on('rectangle');"
title="Rectangle" alt="Rectangle"/>

<area shape="poly"
coords="309,13,358,89,257,89"
href="javascript:clicked_on('triangle');"
title="Triangle" alt="Triangle"/>

<area shape="default"
nohref="nohref" title="Default" alt="Default"/>

</map>
Reply With Quote