Skip to content

Instantly share code, notes, and snippets.

@larswittenberg
Created January 27, 2014 08:22
Show Gist options
  • Save larswittenberg/8644810 to your computer and use it in GitHub Desktop.
Save larswittenberg/8644810 to your computer and use it in GitHub Desktop.
IE Detection with jQuery > 1.9
// Quelle: http://grochtdreis.de/weblog/2014/01/27/browserabfrage-zu-jquery-zurueckholen/
// bringt $browser zum modernen jQuery zurück
// brings back $.browser to modern jQuery
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