I have a website that uses the jQuery Address plugin from Asual for navigation.
The problem I am having, is that using IE6, and IE7, when the user uses the back/forward buttons the website ends up at an unexpected page.
Here's a cut-down version of what I'm doing right now.
$.address.init(function(event) {
defaultPage = "1";
}).change(function(event) {
$("#content").html('<div><img src="/images/activity indicator.gif"></div>')
$("#content").load("./pages/"+names+".html", function(){
var names = $.map(event.pathNames, function(n) {
return n.substr(0, 1).toUpperCase() + n.substr(1);
}).concat(event.parameters.id ? event.parameters.id.split('.') : []);
pageScripts[names]();
});
});
If I'm on page /, goto #/1, goto #/2, then goto page #/3, I'm on page #/3, no problems with any of that. When I hit "Back" in IE6 or IE7 (Chrome, FF, IE8, IE9 all work fine) when on page #/3, I get sent all the way back to page /. Clicking forward moves me to page /#3.
It skips over the history from hash tabs.
However, the example from the website works fine with IE6/IE7. I can't find the functional diferances between what I've done and what it's doing.
onhashchange. So I feel the usage is interchangeable. – Incognito Mar 21 '11 at 19:07