I am attempting to implement an image map within an <a>
tag. It seems to be functioning correctly in Chrome, but I am encountering issues with it not working in Internet Explorer.
Is it acceptable to use an image map in an <a>
tag?
Below is the code I am using:
<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>