Skip to content

Instantly share code, notes, and snippets.

@perguth
Last active August 29, 2015 14:12
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 perguth/625eaa4ae1d62361e4b1 to your computer and use it in GitHub Desktop.
Save perguth/625eaa4ae1d62361e4b1 to your computer and use it in GitHub Desktop.
Use the touch event if possible and degrade to the click event if needed. @Usability @touch @mobile
var clickEvent = ('ontouchstart' in document.documentElement ?
'touchstart' :
'click')
$(node).on(clickEvent, function () { ; })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment