Skip to content

Instantly share code, notes, and snippets.

@kanedo
Created August 25, 2012 16:07
Show Gist options
  • Save kanedo/3467419 to your computer and use it in GitHub Desktop.
Save kanedo/3467419 to your computer and use it in GitHub Desktop.
var isIOS = {
iPhone: function(){
return navigator.userAgent.match(/iPhone/i) ? true : false;
},
iPad: function(){
return navigator.userAgent.match(/iPad/i) ? true : false;
},
iPod: function(){
return navigator.userAgent.match(/iPod/i) ? true : false;
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment