Skip to content

Instantly share code, notes, and snippets.

@wayferer
Created February 3, 2014 21:15
Show Gist options
  • Save wayferer/8792554 to your computer and use it in GitHub Desktop.
Save wayferer/8792554 to your computer and use it in GitHub Desktop.
phonegap check if Android or iOS
function isAndroid(){
return navigator.userAgent.toLowerCase().indexOf("android") > -1;
}
isAndroid();
function isIOS(){
return navigator.userAgent.match(/(iPad|iPhone|iPod)/i) != null;
}
isIOS();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment