Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript AJAX initial page not loading in IE7 Re: AJAX initial page not loading in IE7

#121199
Mottie
Member

Maybe you need to trigger a hash change event after you change it?

$(document).ready(function () {

if (window.location.hash == “”) {
window.location.hash = “home/”;
jQuery(window).trigger( ‘hashchange’ );
}

});