The new version of jQueryUI (1.9) comes with the native tooltip widget. After testing with it, it works fine if the content (value of the title attribute) is short. But if the c
This works:
HTML
AB PNEU 700 X 23 FOLD CORPRO
JavaScript
$(document).tooltip({ content: function() { var element = $( this ); if ( element.is( "[title]" ) ) { return element.attr( "title" ); } }, position: { my: "center bottom-20", at: "center top" } });