Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Created December 13, 2016 09:10
Show Gist options
  • Save rafaelmaeuer/6aa2b0e6c71eda74d10d85b4d6ba3f38 to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/6aa2b0e6c71eda74d10d85b4d6ba3f38 to your computer and use it in GitHub Desktop.
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
if (isChrome) alert("You are using Chrome!");
if (isSafari) alert("You are using Safari!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment