Created
November 23, 2014 22:37
-
-
Save RyoSugimoto/0989dd503fcd5fd56e7f to your computer and use it in GitHub Desktop.
スマートフォンかどうかを判別する。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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