Skip to content

Instantly share code, notes, and snippets.

@kerkenit
Created August 21, 2017 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kerkenit/df90038f22a09641584e8ba8cbea7b7b to your computer and use it in GitHub Desktop.
Save kerkenit/df90038f22a09641584e8ba8cbea7b7b to your computer and use it in GitHub Desktop.
Detect browser
$(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