Skip to content

Instantly share code, notes, and snippets.

@danwarfel
Last active August 6, 2016 13:27
Show Gist options
  • Save danwarfel/1933d97380a1275fa249 to your computer and use it in GitHub Desktop.
Save danwarfel/1933d97380a1275fa249 to your computer and use it in GitHub Desktop.
Detect a Touch Screen Device w/ JavaScript From http://codesr.thewebflash.com/2014/09/detect-touch-screen-device-using.html
var isTouchDevice = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment