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()});
});
}
});
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---