I have the following map tag on my page
<map name="mapWeeklyDeal">
<area shape="RECT" coords="773,55,902,84" href="" title="WHATS THE DEAL?" id="amWhatTheDeal">
<area shape="RECT" coords="660,52,764,87" href="SOMELINK"
target="_blank" title="Become a Fan of Baudville!">
<area shape="RECT" coords="549,54,645,88" href="SOMELINK" target="_blank"
title="Join Us on Twitter!">
</map>
What I would like to do is attach the tooltip to WHATS THE DEAL area tag and not exactly sure how to make this work, I have tried setting my tag like so
<rad:RadToolTip ID="radCustomInfoTT" runat="server" TargetControlID="amWhatTheDeal"
IsClientID="true" Sticky="true" Visible="false" AutoCloseDelay="1000" Animation="none"
Position="TopLeft" RelativeTo="Element" OffsetY="2" Height="240px" Width="400px"
Skin="Default" HideDelay="100" Title="Add Your Logo - Custom Information">
<asp:Literal ID="ltrWhatsTheDeal" runat="server"></asp:Literal>
</rad:RadToolTip>
I even tried to add the onmouseover event to the area tag in question, but then I couldn't find any code that will allow me to bring up the tooltip. So any help on this would be appreciated.
<map name="mapWeeklyDeal">
<area shape="RECT" coords="773,55,902,84" href="" title="WHATS THE DEAL?" id="amWhatTheDeal">
<area shape="RECT" coords="660,52,764,87" href="SOMELINK"
target="_blank" title="Become a Fan of Baudville!">
<area shape="RECT" coords="549,54,645,88" href="SOMELINK" target="_blank"
title="Join Us on Twitter!">
</map>
What I would like to do is attach the tooltip to WHATS THE DEAL area tag and not exactly sure how to make this work, I have tried setting my tag like so
<rad:RadToolTip ID="radCustomInfoTT" runat="server" TargetControlID="amWhatTheDeal"
IsClientID="true" Sticky="true" Visible="false" AutoCloseDelay="1000" Animation="none"
Position="TopLeft" RelativeTo="Element" OffsetY="2" Height="240px" Width="400px"
Skin="Default" HideDelay="100" Title="Add Your Logo - Custom Information">
<asp:Literal ID="ltrWhatsTheDeal" runat="server"></asp:Literal>
</rad:RadToolTip>
I even tried to add the onmouseover event to the area tag in question, but then I couldn't find any code that will allow me to bring up the tooltip. So any help on this would be appreciated.