Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created November 23, 2014 22:37
Show Gist options
  • Save RyoSugimoto/0989dd503fcd5fd56e7f to your computer and use it in GitHub Desktop.
Save RyoSugimoto/0989dd503fcd5fd56e7f to your computer and use it in GitHub Desktop.
スマートフォンかどうかを判別する。
function isSp () {
var ua = navigator.userAgent;
if (ua.indexOf('iPhone') > 0 || ua.indexOf('Android') > 0) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment