Skip to content

Instantly share code, notes, and snippets.

@ghooghe
Created June 11, 2013 15:17
Show Gist options
  • Select an option

  • Save ghooghe/5757715 to your computer and use it in GitHub Desktop.

Select an option

Save ghooghe/5757715 to your computer and use it in GitHub Desktop.
Transfer click event to tap, only if not on a touch device
// Transfer click event to tap, only if not on a touch device
if (!('ontouchend' in window)) {
$(document).delegate('body', 'click', function(e) {
$(e.target).trigger('tap');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment