We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I've been using Jquery address in one of my project and everything works great but when I tried it in IE6, the behavior is very weird.
When I try to visit http://www.local.test.com/?param=123
it loops infinitely: http://www.local.test.com/#/?param=123#/?param=123#/?param=123#/?param=123#/?param=123#/
By the way, here is my jquery initialization
(function($){ //JQUERY ADDRESS Initialization var init = true; state = window.history.pushState !== undefined;
$.address.state('/').init(function(event) { $('.address').address(); }).change(function(event) { if (state && init) { init = false; //handleRequest(); } route(); }); if (!state) {
} }(jQuery));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I've been using Jquery address in one of my project and everything works great but when I tried it in IE6, the behavior is very weird.
When I try to visit
http://www.local.test.com/?param=123
it loops infinitely:
http://www.local.test.com/#/?param=123#/?param=123#/?param=123#/?param=123#/?param=123#/
By the way, here is my jquery initialization
(function($){
//JQUERY ADDRESS Initialization
var init = true;
state = window.history.pushState !== undefined;
}
}(jQuery));
The text was updated successfully, but these errors were encountered: