Skip to content

Instantly share code, notes, and snippets.

@tacamy
Created May 2, 2011 14:06
Show Gist options
  • Save tacamy/951646 to your computer and use it in GitHub Desktop.
Save tacamy/951646 to your computer and use it in GitHub Desktop.
JavaScript UA Navigator(Android+'Mobile')
if ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || /Android.+Mobile/.test(navigator.userAgent) > 0) {
location.href = '/hoge/';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment