Skip to content

Instantly share code, notes, and snippets.

@ganoro
Created October 11, 2012 20:48
Show Gist options
  • Save ganoro/3875382 to your computer and use it in GitHub Desktop.
Save ganoro/3875382 to your computer and use it in GitHub Desktop.
click vs. touch
$(selector).click(function(event){
/* click event handler */
});
/* vs. */
$(selector).bind('touchend', function(event){
/* mimic the "native" tapping here... */
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment