Skip to content

Instantly share code, notes, and snippets.

@imjakechapman
Created June 9, 2013 11:16
Show Gist options
  • Save imjakechapman/5743205 to your computer and use it in GitHub Desktop.
Save imjakechapman/5743205 to your computer and use it in GitHub Desktop.
js check for mobile
// check if device is handheld device
var isHandheldDevice = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ? true : false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment