views:

43

answers:

3

When you move your mouse over a link with title, after a while it will show the title as a tip. Is it possible to remove this delay or change it so I shows the tip faster?

+3  A: 

Hi,

That is strictly browser dependent. If you want custom tooltips you should consider a JavaScript solution.

Here's a tutorial on how to replace the browser tooltips with custom ones: http://www.switchonthecode.com/tutorials/jquery-custom-tooltips

Alin Purcaru
+3  A: 

No, it is a browser/os configuration. Your only reliable option is replacing the default tooltip with a JavaScript tooltip, for example: qTip

Kobi
+2  A: 

You can generate something similar to those using Javascript or CSS, but you can't actually change the behavior of that since it's browser and OS dependent.

Paul McMillan