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'); }); }