Created
October 28, 2016 03:34
-
-
Save woosungchu/4168f905ec84ba03de872de769e99822 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 = 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