Last active
August 29, 2015 13:58
-
-
Save pixelhandler/9994726 to your computer and use it in GitHub Desktop.
HTML snippet to redirect website visitors using a Firefox browser.
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
| <script type="text/javascript"> | |
| if (navigator.userAgent.match(/Gecko/) !== null && navigator.userAgent.match(/Firefox/) !== null) { | |
| window.location = 'http://browsehappy.com'; // put a link here; | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment