Created
August 21, 2017 13:48
-
-
Save kerkenit/df90038f22a09641584e8ba8cbea7b7b to your computer and use it in GitHub Desktop.
Detect browser
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
$(function () { | |
$.browser.chrome = $.browser.webkit && !!window.chrome; | |
$.browser.safari = $.browser.webkit && !window.chrome; | |
$.browser.firefox = $.browser.mozilla | |
$.browser.internetexplorer = window.navigator.userAgent.indexOf('MSIE ') > 0 || window.navigator.userAgent.indexOf('Trident/') > 0; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment