Skip to content

Instantly share code, notes, and snippets.

@rezozero
Created November 6, 2012 10:37
Show Gist options
  • Select an option

  • Save rezozero/4023945 to your computer and use it in GitHub Desktop.

Select an option

Save rezozero/4023945 to your computer and use it in GitHub Desktop.
JS: isMobile
function isMobile() {
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
return true;
}
else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment