Tabs and cluetip difficulty

Tabs and cluetip difficulty


Hello folks,
I cannot get cluetip to work in UI-Tabs and I'm seeking help.
Archived solutions to other posts on the same theme point the problem
at binding, but I can't see how that fault is happening on my code.
The following function calls in a table containing text and a bunch of
a tags, with the class "tip" added.
However, the cluetips don't work. The other a tag bindings work.
I've checked that the css and the js files have loaded and there are a
bunch of cluetip divs generated and appended to the bottom of the file
- so some part of cluetip is being initiated, just not the actual tips
on the a tags.
Where am I going wrong?
Thanks/Bruce
function getAllOptions() {
$.ajax({
type: 'GET',
url: 'scripts/ajax_studentroll.asp?id=allselect&rand=' + new
Date().getTime(),
dataType: "html",
success: function(html){
$("#sDetails,#autosearch").fadeOut(100);
$("#listdisplay").html(html).fadeIn(600, function() {
            $("a.tip").cluetip();
            $("a.gso").bind("click", function() {getSearchOptions()});
            $("a.gao").unbind();
            $("a.gao").bind("click", function() {getAllOptions2()});
            });
}
});
}