Skip to content

Instantly share code, notes, and snippets.

@woosungchu
Created October 28, 2016 03:34
Show Gist options
  • Select an option

  • Save woosungchu/4168f905ec84ba03de872de769e99822 to your computer and use it in GitHub Desktop.

Select an option

Save woosungchu/4168f905ec84ba03de872de769e99822 to your computer and use it in GitHub Desktop.
jQuery.browser = new (function() {
if(jQuery.browser.msie) return jQuery.browser;
else {
var userAgent = navigator.userAgent;
if(!!(userAgent.match(/Trident\/7\./) && userAgent.match(/rv[:]11\./))) { // ie 11
return {msie:true, version:"11.0"};
} else {
return jQuery.browser;
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment