Skip to content

Instantly share code, notes, and snippets.

@ZachMoreno
Last active December 21, 2015 14:49
Show Gist options
  • Select an option

  • Save ZachMoreno/6322596 to your computer and use it in GitHub Desktop.

Select an option

Save ZachMoreno/6322596 to your computer and use it in GitHub Desktop.
// grab User Agent
var ua = navigator.userAgent.toLowerCase();
// scan for target browser in User Agent string
if(ua.indexOf('chrome') >= 0){
// alert visitor
alert('Message to visitor about their browser');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment