Search and Top Navigation
#4220 closed bug (duplicate)
Opened February 23, 2009 10:57PM UTC
Closed February 23, 2009 11:17PM UTC
Last modified October 11, 2012 09:15PM UTC
tab on IE loading entire page within the tab.
Reported by: | ripter | Owned by: | |
---|---|---|---|
Priority: | critical | Milestone: | |
Component: | ui.tabs | Version: | 1.6rc6 |
Keywords: | IE | Cc: | |
Blocked by: | Blocking: |
Description
This only happens in IE (7.0.5730.13)
I'm using the UI version 1.6rc6.
I have nested tabs, I'm refreshing the content in one of the tabs with jQuery $.post() and then calling '$(".tabs").tabs();' to make the nested tabs look like tabs again. This works fine in Firefox and Chrome, but on IE, it looks like it works, then it says 'Loading...' and it puts the entire page in the tab. It also changes the links to #ui-tabs-244 and #ui-tabs-247 etc.
Here is my JS code:
$.get( "management_users.aspx", {"ajax_page": "true", "action": "AdvancedRefresh"} , function(xml) {
Update just the advanced page
$("#pvAdanced").html( $(xml).html() );
Make the nested tabs
$(".tabs").tabs();
});
#4033