Skip to content

Instantly share code, notes, and snippets.

@gabovanlugo
Created June 27, 2013 15:34
Show Gist options
  • Save gabovanlugo/5877481 to your computer and use it in GitHub Desktop.
Save gabovanlugo/5877481 to your computer and use it in GitHub Desktop.
Check if your user is using an iOS or Android Device.
var isiPhone = navigator.userAgent.toLowerCase().indexOf("iphone");
var isiPad = navigator.userAgent.toLowerCase().indexOf("ipad");
var isiPod = navigator.userAgent.toLowerCase().indexOf("ipod");
var isAndroid = navigator.userAgent.toLowerCase().indexOf("android");
if(isiPhone > -1 || isiPad > -1 || isiPod > -1 || isAndroid > -1){
// Do your mobile-only stuff
console.log("You're in a mobile device son ;)");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment