Skip to content

Instantly share code, notes, and snippets.

@Dzinlife
Created April 14, 2015 09:03
Show Gist options
  • Save Dzinlife/126fc812d436c30fdf16 to your computer and use it in GitHub Desktop.
Save Dzinlife/126fc812d436c30fdf16 to your computer and use it in GitHub Desktop.
var clickOrTouch = (('ontouchend' in window)) ? 'touchend' : 'click';
$('#element').on(clickOrTouch, function() {
// do something
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment