Skip to content

Instantly share code, notes, and snippets.

@toddmotto
Created September 27, 2013 16:04
Show Gist options
  • Save toddmotto/6730919 to your computer and use it in GitHub Desktop.
Save toddmotto/6730919 to your computer and use it in GitHub Desktop.
Assumptious click/touch binding events
var device = function () {
return 'ontouchstart' in window ? 'touchstart' : 'click';
};
element.on(device(), myFunction);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment