I'm looking to use jQuery tooltip to show a breakdown for a certain number in a table, with some hyperlinks within the tooltip content. It displays properly but when I mouse out of the tooltip trigger element the tooltip obviously hides.
Here's my code..
$(document).tooltip({
items: '.icon-info-sign',
content: function () {
var tooltipTrigger = $(this);
return $(tooltipTrigger).siblings('.tooltip-content').html();
}
});