I’m trying to use an image map in <a>
tag. It has worked in chrome but not hasn’t worked in IE.
Is it okay to use an image map in <a>
tag?
Here is my code:
<div class="planner_banner">
<a href="xxx">
<img src="xxx" usemap="#planner_banner_map" border="0">
<map name="planner_banner_map">
<area shape="rect" coords="243, 1, 272, 30"
onclick="$('.planner_banner').hide();return false;"/>
</map>
</a>
</div>