Last active
December 21, 2015 14:49
-
-
Save ZachMoreno/6322596 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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