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

Is there a way to change how fast the tooltip from an element's "title" attribute? I'd like it if the tooltip appeared immediately, but it seems to take a few seconds to apear.

share|improve this question
1  
Wow, that's a damn good question. Improve you accept rate though. – Madara Uchiha Feb 5 '12 at 16:25
1  
Would that not be determined by the operating system and/or web-browser? Unless you implement your own dynamic tooltip like this (but less hideous) :) – c24w Feb 5 '12 at 16:26

3 Answers

up vote 5 down vote accepted

Now, there's no way. The title attribute is implemented in a browser dependent fashion. For example I remember differences between IE and FF when using \r\n inside it.

If you want customization you may take a look at third party plugins such as qTip2 which mimic it using divs and stuff and provide you full control.

share|improve this answer

It isn't possible to change how fast default browser's tooltip appear, but you can use one of the tooltip plugins (here is few: http://www.1stwebdesigner.com/css/stylish-jquery-tooltip-plugins-webdesign/ ) where you can customise lot's of things, including delay.

share|improve this answer

I don't know how much control you can have over a tooltip, or whether it's a standardised behavior or if it varies by browser. Maybe you should look at existing tools, like this one for jQuery, that emulate them but giving you far more options for looks and behavior.

share|improve this answer

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.