Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
There's no way to detect when the tooltip is shown. The only workaround I can think of, apart from using your own tooltip library, is to use an onmouseover event that triggers a timer (and stops that timer onmouseout). But that way, you can never be sure whether the tooltip was actually displayed or not. – Marcel Korpel Jun 26 '10 at 19:24
1  
Well that brings up a good point marcel - how long the tooltip was open. @Frode - you could track the time between display and hide of the custom tooltip to make sure it wasn't just a second or two if need be, ya? – Dan Heberden Jun 26 '10 at 19:33
@Dan – I can read short texts within two seconds. ;) – Marcel Korpel Jun 26 '10 at 20:51

2 Answers

up vote 5 down vote accepted

Mine would be to create your own tooltips that you could append extra 'tracking' to determine if they were displayed or not.

With that library, you could make your own effect that does customized things on the over/out of the tooltip.

share|improve this answer
+1 - Probably the only way to resolve this. – Gert Grenander Jun 27 '10 at 0:57
Accepting the answer, but I haven't tried it. – Frode Lillerud Dec 16 '10 at 21:16

Use JQuery. If you do sth only particular tags you must set your tags id and/or name attributes.

<a href=".." id="x"></a>

The code:

$(document).ready(function () {           

           $("#x").mouseenter(function () {
               alert("yeah");
           });

       });

If you run javascript code for all <a> tags you use this like below.

$(document).ready(function () {


           $("a").mouseenter(function () {
               alert("yeah");
           });

       });

You add this between <head> tags of your page to use JQuery library

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js" type="text/javascript"></script>
share|improve this answer
1  
"Using OnMouseOver isn't enough since it triggers too early." is what the OP had already said. – Dan Heberden Jun 26 '10 at 17:51
"Use jQuery" will work 99.99% of the times as an answer. This is one of 0.01% questions. – Anurag Jun 26 '10 at 18:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.