I’m using this plugin for displaying tooltips
Looking at this fiddle – http://jsfiddle.net/CmmUC/1/
You’ll see that the tootip does not appear. It works if you change the javascript to
$('.tooltip').tipsy({ gravity: 'w' });
Why does plugin hate ‘focus’? Am I missing something obvious that’s causing the issue?
I’m working in the latest stable Chrome.
see my updated version of your fiddle:
http://jsfiddle.net/CmmUC/7/
basically you need to add the option
trgger: 'manual'upon instantiation and maually show/hide the tipsy using the jquery hover function.