Skip to content

Instantly share code, notes, and snippets.

@shaneriley
Created September 12, 2010 12:58
Show Gist options
  • Save shaneriley/576045 to your computer and use it in GitHub Desktop.
Save shaneriley/576045 to your computer and use it in GitHub Desktop.
var isIphone = (function() {
return navigator.userAgent.match(/iPhone|iPod/i) != null;
})();
var isIpad = (function() {
return navigator.userAgent.match(/iPad/i) != null;
})();
@shaneriley
Copy link
Author

Usage: if (isIphone) { // do stuff }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment