We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
http://jquery.com/upgrade-guide/1.9/#jquery-browser-removed
hashchange depends on it.
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
One way around this, to detect IE only, is to use IE's conditional compiler comments. For more information, see http://msdn.microsoft.com/en-us/library/ie/121hztk3(v=vs.94).aspx
Instead of testing for this:
$.browser.msie && !supports_onhashchange ...
test for an msie variable (or whatever you want to call it), that is only set to true if running in IE:
var msie = false; /*@cc_on msie = true; @*/ msie && !supports_onhashchange ...
This worked fine for me
navigator.userAgent.match(/msie/i) && !supports_onhashchange && (function(){
I think #30 is a better solution.
No branches or pull requests
http://jquery.com/upgrade-guide/1.9/#jquery-browser-removed
hashchange depends on it.
The text was updated successfully, but these errors were encountered: