Created
September 12, 2014 14:34
-
-
Save AlexMocioi/dd6fc77fe3f4e90a0159 to your computer and use it in GitHub Desktop.
Ăsta e codul de compatibilizare în spate pentru jQuery când o ia la pachet !!!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.browser={}; | |
(function() { | |
jQuery.browser.msie=false; | |
jQuery.browser.version=0; | |
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) { | |
jQuery.browser.msie=true; | |
jQuery.browser.version=RegExp.$1; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment