My site is using the jQuery tooltip plugin (http://jquery.bassistance.de/tooltip/demo/) and the blockui plugin.
I am applying the tooltips like this:
$(function() {
$("span.helptooltip").tooltip({
showURL: false,
showBody: " - "
});
});
That works like a charm everywhere except a DIV that is being shown using blockui:
$.blockUI( {
theme: true,
title: "my div",
message: $('#divName'),
css: { width: '325px'}
});
In the DIV that gets shown on top of the blocked UI, the tooltip will not display over the span like it does throughout the rest of the site.
Any ideas on how to get this tooltip to display while in the blocked ui?