Last active
August 29, 2015 14:06
-
-
Save Gioni06/7c137526c8f5695234e6 to your computer and use it in GitHub Desktop.
Check if Device is an Iphone or iPod
This file contains 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
if(navigator.vendor != null && navigator.vendor.match(/Apple Computer, Inc./) && navigator.userAgent.match(/iPhone/i) || (navigator.userAgent.match(/iPod/i))) | |
{ | |
// Device is an iPhone or iPod | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment