Skip to content

Instantly share code, notes, and snippets.

@martinwolf
Created June 19, 2013 07:39
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 martinwolf/5812337 to your computer and use it in GitHub Desktop.
Save martinwolf/5812337 to your computer and use it in GitHub Desktop.
JS: Detect if touch device
if ( ('ontouchstart' in window) || (navigator.msMaxTouchPoints > 0) ) {
// is touch
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment