I know that IE does not support pushState, but I want a way for my users with a modern browser to enjoy the benefits while the users using older browsers don't make use of it.

Currently, the javascript code prevents my tabbed navigation from working completely in IE, which means that cannot see a lot of the content.

Anyone know a solution for my problem?

Here's my JavaScript code:

var tabContents = $(".tab_content").hide(),
                  tabs = $(".tab_nav li");

tabs.first().addClass("active").show();
tabContents.first().show();

tabs.click(function() {
    var $this = $(this), 
        activeTab = $this.find('a').attr('href');
        history.pushState(null, '', activeTab);

    if(!$this.hasClass('active')){
        $this.addClass('active').siblings().removeClass('active');
        tabContents.hide().filter(activeTab).fadeIn();
    }

    return false;
});

$(window).bind('popstate', function(){
    $.getScript(location.href);
});
link|improve this question

57% accept rate
1  
By indenting your code block 4 spaces, you can format all of it without using backticks. – tvanfosson Jul 26 '11 at 0:03
oh sweet.. didn't know :) thanks. – imjp Jul 26 '11 at 0:05
The {} button on theeditor bar rocks, BTW. – missingno Jul 26 '11 at 3:47
is this a duplicate of stackoverflow.com/questions/5527617/… – Kevin Hakanson Aug 7 '11 at 1:40
feedback

1 Answer

Try the jQuery BBQ: Back Button & Query Library. I've had great success using it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.