Forum Moderators: phranque
For example:
<a href="click1.htm"><img src="theimage.gif" alt="This click works only in Firefox" width="120" height="300" border="0" usemap="#Map" /></a>
<map name="Map" id="Map">
<area shape="rect" coords="18,118,102,205" href="#" target="click2.htm" alt="This click works in Firefox AND IE" />
</map>
[edited by: RickDyer at 8:45 am (utc) on Sep. 5, 2008]
Try
<img src="theimage.gif" alt="This click works only in Firefox" width="120" height="300" border="0" usemap="#Map">
<map name="Map" id="Map">
<area shape="rect" coords="18,118,102,205" href="click2.htm" alt="targeted link">
<area shape="rect" href="/" coords="0,0,120,300" alt="home">
</map>
You could also use the default which does the same thing:
<area shape="default" href="/" alt="return to main page">