This is just Hammer(myElement).off(eventName);
If you want to use jQuery, the syntax is as follows:
$(myElement).hammer().on(eventName, callback)
If you want to specify a "namespace" for the event, then you declare, for example.
$(myElement).hammer().on("tap.namespace", callback); $(myElement).hammer().on("tap.anotherNamespace", callback2);
which allows you to separate only the desired event, for example:
$(myElement).hammer().off("tap.anotherNamespace");
source share