-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
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
$.browser was removed #28
Comments
👍 |
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. |
http://jquery.com/upgrade-guide/1.9/#jquery-browser-removed
hashchange depends on it.
The text was updated successfully, but these errors were encountered: