Skip to content

Instantly share code, notes, and snippets.

@kontur
Created October 9, 2013 13:43
Show Gist options
  • Save kontur/6901510 to your computer and use it in GitHub Desktop.
Save kontur/6901510 to your computer and use it in GitHub Desktop.
Simple touch detection snipped
function is_touch_device() {
return 'ontouchstart' in window // works on most browsers
|| 'onmsgesturechange' in window; // works on ie10
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment