Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created February 5, 2014 14:09
Show Gist options
  • Save ingozoell/8824301 to your computer and use it in GitHub Desktop.
Save ingozoell/8824301 to your computer and use it in GitHub Desktop.
Javascript – Mobile Detection
///////////////////////////////
// Mobile Detection
///////////////////////////////
function isMobile(){
return (
(navigator.userAgent.match(/Android/i)) ||
(navigator.userAgent.match(/webOS/i)) ||
(navigator.userAgent.match(/iPhone/i)) ||
(navigator.userAgent.match(/iPod/i)) ||
(navigator.userAgent.match(/iPad/i)) ||
(navigator.userAgent.match(/BlackBerry/))
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment