Tooltip on AREA object

  • Thread starter Thread starter drb
  • Start date Start date
D

drb

I have a MAP object on an aspx page. The MAP object
contains a number of AREA objects. I would like to assign
a tooltip or onmouseover event to each of these AREA
objects, but it doesn't look like AREA has title or
tooltip properties, despite what I see in help
documentation. Does anyone know how I can do this?

thanks.
David
 
Hi, you could try using CSS and add floating dots on the image? then add
a ALT or just add an invisible table which becomes visible onmouseover.

Can i ask what kind of map object you are using?
 
thanks for responding.

Here's what I have:

<html>
<body>
<MAP name="MyMap">
<AREA id="AreaOne" shape="RECT" target="_self"
coords="123,119,200,134" href="frmMyPage.aspx">
</MAP>
<form runat="server">
<table>
<tr><td>
<IMG src="images/myimage.gif" useMap="#MyMap"
runat="server"></td></tr>
</table>
</form>
</body>
</html>

thanks again,
David
 
Back
Top