Making only part of an image a hot spot link.
Posted
by Rkstarcass
on Stack Overflow
See other posts from Stack Overflow
or by Rkstarcass
Published on 2010-04-29T18:00:54Z
Indexed on
2010/04/29
18:07 UTC
Read the original article
Hit count: 283
I have a large image and only want a rectangle portion of it to be a hot spot link that goes "Home". Here is my code that is not working. Any help on what I am missing or have done wrong? Thanks!
<div id="defaultPic" runat="server">
<img src="Images/boardwise-home.jpg" alt="Boardwise Home" usemap="#map" />
<map name="map" id="boardwise-home">
<area shape="rect" coords="32,23,32,105,275,105,275,23" href="~/default.aspx"
title="Boardwise Home" alt="Home" />
</map>
© Stack Overflow or respective owner