Webpage has expired in IE8

Webpage has expired in IE8

When I click the back button in IE8, I get a "Webpage has expired" error. I want IE to refresh the page.

I am using the history plugin correctly?

Here's what I've tried, I don't think I am getting into the $(document).ready(function():

  1. $(document).ready(function() {

            jQuery.historyInit(pageload, "global/reports/global_qual_review_session_report.html");
            initLoad();
    });




  2. function pageload(hash) {
            // alert("pageload: " + hash);
            // hash doesn't contain the first # character.
            if(hash) {
                // restore ajax loaded state
                if(jQuery.browser.msie) {
                    hash = encodeURIComponent(hash);
                }
                initLoad();
            } else {
                // start page
               initLoad();
               
            }
    }