Is this possible or am I totally off base:
I have a ASPX User Control that is named UserInfo.ascx
It has the following load method to load an AJAX page
$("#qhcContent").load("infopage.aspx #userDisplay", function (response, status, xhr) {
if (status == "error") {
///// Show Error Message
$("#qhcThrobber").fadeOut(500, function () {
$("#qhcContent").fadeIn(300);
});
}
else {
$("#qhcThrobber").fadeOut(500, function () {
$("#qhcContent").fadeIn(300);
});
}
});
Then I have the ASPX page that has two tabs (via jQuery UI Tabs) and this is called to create the the basic tabs. I know it works if I just navigate to the page regularly, but not when I envoke the load method.
$().ready(function () {
$("#quickCheckTabs").tabs();
});
But the tabs are never being created on the aspx page. Is this because of the way that jquery.load() works ?
Thanks alot.
-Seth