Skip to content

Instantly share code, notes, and snippets.

@simenbrekken
Created December 2, 2011 14:24
Show Gist options
  • Save simenbrekken/1423401 to your computer and use it in GitHub Desktop.
Save simenbrekken/1423401 to your computer and use it in GitHub Desktop.
Create touch-friendly jQuery event handler
var touchHandler = function(handler) {
return function(e) {
handler.call(this, e.originalEvent.touches ? e.originalEvent.touches[0] : e);
};
};
// Example
$('foo').on('mousedown touchstart', touchHandler(function(e) {
console.log('Touch/Mouse coordinates, top:', e.pageY, 'left:', e.pageX);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment