Skip to content

Instantly share code, notes, and snippets.

@robhadfield
Created August 8, 2012 13:11
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robhadfield/3294954 to your computer and use it in GitHub Desktop.
Save robhadfield/3294954 to your computer and use it in GitHub Desktop.
is_touch_device
function is_touch_device() {
try {
document.createEvent("TouchEvent");
return true;
} catch (e) {
return false;
}
}
if(is_touch_device()) {
alert('Touch device');
} else {
alert('Not a touch device')
}​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment