Created
December 2, 2011 14:24
-
-
Save simenbrekken/1423401 to your computer and use it in GitHub Desktop.
Create touch-friendly jQuery event handler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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