Skip to content

Instantly share code, notes, and snippets.

@vyspiansky
Last active March 1, 2021 16:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vyspiansky/9779373 to your computer and use it in GitHub Desktop.
Save vyspiansky/9779373 to your computer and use it in GitHub Desktop.
JavaScript: how to detect a handheld device
if ( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
// some code...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment