Skip to content

Instantly share code, notes, and snippets.

@benjamingsmith
Created August 21, 2015 03:00
Show Gist options
  • Save benjamingsmith/d30274b57e23d902e356 to your computer and use it in GitHub Desktop.
Save benjamingsmith/d30274b57e23d902e356 to your computer and use it in GitHub Desktop.
function deviceDetection() {
if( navigator.userAgent.match(/Android/i)
|| navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)) {
device = 'mobile';
} else {
device = 'desktop';
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment