Skip to content

Instantly share code, notes, and snippets.

@pixelhandler
Last active August 29, 2015 13:58
Show Gist options
  • Select an option

  • Save pixelhandler/9994726 to your computer and use it in GitHub Desktop.

Select an option

Save pixelhandler/9994726 to your computer and use it in GitHub Desktop.
HTML snippet to redirect website visitors using a Firefox browser.
<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