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 is my trick to do it with latest jquery / jqueryui
It's assuming all of the items you want to have tooltips have class 'jqtooltip', they have title tags, and the title has a pipe character for a line separator.
$('.jqtooltip').tooltip({
content: function(callback) {
callback($(this).prop('title').replace('|', '
'));
}
});