I have a page with HTML anchor tags that have the title attribute set.
<a href="...." title="Some tooltip text" />
I want to detect when the tooltip is shown, and run some javascript. This is to log that the tooltip has been displayed. Using OnMouseOver isn't enough since it triggers too early.
Any ideas?
onmouseoverevent that triggers a timer (and stops that timeronmouseout). But that way, you can never be sure whether the tooltip was actually displayed or not. – Marcel Korpel Jun 26 '10 at 19:24