I donβt know, have you ever found an answer to your question. The solution is simple and consists of two parts. First, since you are trying to use calls with jQuery, you must use the jQuery version for the Hammer plugin. The current version of the jQuery plugin can be found at:
http://eightmedia.imtqy.com/hammer.js/dist/jquery.hammer.min.js
The second part - you need to use the Hammer method with object selection. You do this by inserting a Hammer call between the selector and the binding. For instance:
JQuery object:
$('nav').on('click', 'button', function(){ });
JQuery Hammer Object:
$('nav').hammer().on('click', 'button', function(){ });
What is it...
source share