Ticket #1096 (new defect)
Tooltips don't work on image maps
| Reported by: | guest | Owned by: | bill |
|---|---|---|---|
| Priority: | normal | Milestone: | future |
| Component: | Dijit | Version: | 0.2 |
| Severity: | normal | Keywords: | |
| Cc: |
Description (last modified by bill) (diff)
Tooltips don't work on <area> tags. They seem to open, but closing is another story. In firefox they stay open until you mouse completly off of the image. That means that several tooltips will be displaying at once, even though you are no longer mousing over their designated areas. In IE the tooltips show, but then it throws a javascript error and they don't ever go away. Here's some simple HTML that shows what I'm talking about.
<img usemap="#hotspots" src="someimage.jsp"> <map name="hotspots"> <area id="node1" shape="rect" href="somelink" coords="1,1 100,100"> <area id="node2" shape="rect" href="somelink" coords="1,200 100,300"> <area id="node3" shape="rect" href="somelink" coords="1,400 100,500"> </map> <span dojoType="tooltip" connectId="node1">Description 1</span> <span dojoType="tooltip" connectId="node2">Description 2</span> <span dojoType="tooltip" connectId="node3">Description 3</span>
Attachments
Change History
Note: See
TracTickets for help on using
tickets.