Skip to content

Instantly share code, notes, and snippets.

@hiroshineya
Created May 10, 2012 09:20
Show Gist options
  • Select an option

  • Save hiroshineya/2652086 to your computer and use it in GitHub Desktop.

Select an option

Save hiroshineya/2652086 to your computer and use it in GitHub Desktop.
check iOS with javascript
// check ios
// return: true=ios. false=other.
function isIOS() {
var ua = navigator.userAgent;
var res = false;
if(ua.indexOf('iPhone') > -1 || ua.indexOf('iPad') > -1 || ua.indexOf('iPod') > -1) {
res = true;
}
return res;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment