Skip to content

Instantly share code, notes, and snippets.

@eon01
Last active June 7, 2017 14:38
Show Gist options
  • Select an option

  • Save eon01/26810dee3916a6198296059ad6d4f65f to your computer and use it in GitHub Desktop.

Select an option

Save eon01/26810dee3916a6198296059ad6d4f65f to your computer and use it in GitHub Desktop.
Redirect static website according to the User Agent (Android, iOS)
<script type="text/javascript">
var u = navigator.userAgent
if( /iPhone/i.test(u) ) {
//window.location = "http://www.apple.com";
}
else if (/android/i.test(u)) {
//window.location = "http://www.google.com";
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment