Created
June 27, 2013 15:34
-
-
Save gabovanlugo/5877481 to your computer and use it in GitHub Desktop.
Check if your user is using an iOS or Android Device.
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
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