You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From what I have tested its not possible to use off() without any arguments?
$(element).hammer().off(); // not possible
$(element).hammer().off('tap'); // possible
I would like the off to work like explained on jQuery documentation: Calling .off() with no arguments removes all handlers attached to the elements. Specific event handlers can be removed on elements by providing combinations of event names, namespaces, selectors, or handler function names. When multiple filtering arguments are given, all of the arguments provided must match for the event handler to be removed.
The text was updated successfully, but these errors were encountered:
From what I have tested its not possible to use off() without any arguments?
I would like the off to work like explained on jQuery documentation:
Calling .off() with no arguments removes all handlers attached to the elements. Specific event handlers can be removed on elements by providing combinations of event names, namespaces, selectors, or handler function names. When multiple filtering arguments are given, all of the arguments provided must match for the event handler to be removed.
The text was updated successfully, but these errors were encountered: