I\'m using hammer.js and it appears that I event.stopPropagation() doesn\'t work with tap event.
event.stopPropagation()
If I click on the child, the associated event is triggered
I had a similar problems with the touch events.
I solved it by using
return false;
which is the same as calling e.preventDefault(); e.stopPropagation();