Skip to content

Instantly share code, notes, and snippets.

@Gioni06
Last active August 29, 2015 14:06
Show Gist options
  • Save Gioni06/7c137526c8f5695234e6 to your computer and use it in GitHub Desktop.
Save Gioni06/7c137526c8f5695234e6 to your computer and use it in GitHub Desktop.
Check if Device is an Iphone or iPod
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