Skip to content

Instantly share code, notes, and snippets.

@juandiegoh
Last active December 28, 2015 06:59
Show Gist options
  • Save juandiegoh/7460686 to your computer and use it in GitHub Desktop.
Save juandiegoh/7460686 to your computer and use it in GitHub Desktop.
Redirect Mobile devices from JavaScript
<script type="text/javascript">
var ios = (/iphone|ipad|ipod/i.test(navigator.userAgent.toLowerCase()));
if (ios) {
document.location = "https://itunes.apple.com/us/app/moviz-guess-the-movie/id705337240?l=es&amp;ls=1&amp;mt=8";
}
var android = (/android/i.test(navigator.userAgent.toLowerCase()));
if(android) {
document.location = "https://play.google.com/store/apps/details?id=com.app.android.moviequiz";
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment