I filtered my way through jQuery tooltip plugins and found tipsy ones. It is used by GitHub, which is exactly what I based on most of my solutions. I really like it and it is very easy to use.
I have a problem with this. I need the tooltip to disappear in focus, not freeze. It currently works, but only on hover. Here is my current code:
$('input.tip').tipsy({trigger: 'focus', gravity: 'w', fade: true});
With or without trigger: 'hover',does not matter. I carefully read the documents, so this is the correct code.
This is not related to HTML / CSS, I know this actually. Because it already works, just out of focus.
I am using jQuery v1.4.4.
Any suggestions would be greatly appreciated, thanks.
Resource: http://onehackoranother.com/projects/jquery/tipsy/
source
share