Skip to content

Instantly share code, notes, and snippets.

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