Problem with dynamic site works in IE8 and does not work in 9
Hello friends. I have problems with dynamic site works in IE8 and does not work in 9.
Works well the "Tab One" (-menu upper-) by default (shows section "column" and "content" internal), but when I go out and I click on another tab and then return to "Tab One" only shows "content".
I need to show on the first tab "column" and "content", as it is by default.
See example with default: http://jquerytest.zxq.net/
Files: http://www.mediafire.com/download.php?zotek8b4vwr4b40
jquery:
- load : function(url) {
- url = url === '/' ? url : url;
- jQuery.getJSON(url, { ajax : 1 }, function(data) {
- jQuery.each(data, function(k, v) {
- $('#' + k + ' section').fadeOut(0, function() {
- $(this).replaceWith($(v).hide().fadeIn(0));
- });
- });
- });
- }