Skip to content

Instantly share code, notes, and snippets.

@rex
Created February 26, 2015 00:37
Show Gist options
  • Save rex/ff04ecaf488bbeffcc88 to your computer and use it in GitHub Desktop.
Save rex/ff04ecaf488bbeffcc88 to your computer and use it in GitHub Desktop.
Super, dead simple browser & platform detection. Found on this awesome blog post: http://davidlesches.com/blog/making-browsers-play-nice-with-thin-fonts
$ ->
is_chrome = navigator.userAgent.indexOf('Chrome') > -1
is_explorer = navigator.userAgent.indexOf('MSIE') > -1
is_firefox = navigator.userAgent.indexOf('Firefox') > -1
is_safari = navigator.userAgent.indexOf("Safari") > -1
is_opera = navigator.userAgent.indexOf("Presto") > -1
is_mac = (navigator.userAgent.indexOf('Mac OS') != -1)
is_windows = !is_mac
if is_chrome && is_safari
is_safari=false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment