Skip to content

Instantly share code, notes, and snippets.

@sorensen
Created October 21, 2011 21:50
Show Gist options
  • Save sorensen/1305078 to your computer and use it in GitHub Desktop.
Save sorensen/1305078 to your computer and use it in GitHub Desktop.
iPad and iPhone detection
// iPad - iPhone detection
function iMobile() {
return (
(!!~navigator.platform.indexOf("iPhone")) ||
(!!~navigator.platform.indexOf("iPad"))
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment