Skip to content

Instantly share code, notes, and snippets.

@alexcorvi
Created March 1, 2016 16:03
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 alexcorvi/bf2593c63a5cdb5458ba to your computer and use it in GitHub Desktop.
Save alexcorvi/bf2593c63a5cdb5458ba to your computer and use it in GitHub Desktop.
detect if the browser is google chrome or not via JavaScript
var is_chrome = ((navigator.userAgent.toLowerCase().indexOf('chrome') > -1) &&(navigator.vendor.toLowerCase().indexOf("google") > -1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment