Skip to content

Instantly share code, notes, and snippets.

@garbles
Forked from alkrauss48/is_mobile.js
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garbles/5540ee193ad05ba855ae to your computer and use it in GitHub Desktop.
Save garbles/5540ee193ad05ba855ae to your computer and use it in GitHub Desktop.
// From http://stackoverflow.com/questions/11381673/javascript-solution-to-detect-mobile-browser#answer-13819253
var isMobile = {
Android: navigator.userAgent.match(/Android/i),
BlackBerry: navigator.userAgent.match(/BlackBerry/i),
iOS: navigator.userAgent.match(/iPhone|iPad|iPod/i),
Opera: navigator.userAgent.match(/Opera Mini/i),
Windows: navigator.userAgent.match(/IEMobile/i) || navigator.userAgent.match(/WPDesktop/i)
};
isMobile.any = isMobile.Android || isMobile.BlackBerry || isMobile.iOS || isMobile.Opera || isMobile.Windows;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment