Skip to content

Instantly share code, notes, and snippets.

@interfeis
Created July 6, 2012 20:38
Show Gist options
  • Save interfeis/3062633 to your computer and use it in GitHub Desktop.
Save interfeis/3062633 to your computer and use it in GitHub Desktop.
/* Javascript code to verify if a page is loading on a Mobile browser */
var isDesktop = false;
var isMobile = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry|webOS)/);
if (!isMobile) {
isDesktop = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment