Hammer.js : How to handle / set tap and doubletap on same elements
I'm using jquery.hammer.js, it works quite well and I am able to bind function to a doubletap event. That is working fine. What I want is to bind two different behaviors. One for the "tap", one for the "doubletap". I use the code below to bind my functions. When I do that, I only get the "tap", the "doubletap" doesn't seem to be triggered. $("#W0AM").hammer(); $("#W0AM").on('doubletap', function (event) { alert( 'this was a double tap' ); }).on('tap', function (event) { alert( 'this was a single tap' ); }); If I remove the .on('tap'... ) binding, then I get the "doubletap" as expected. $("