Remove event listeners from the node. Events can be separated by a space. For
example, "click mouseover" will remove the event listener from both
"click" and "mouseover" events. If the handler is not
specified, all event listeners of the given type will be removed. If the type is
"", all event listeners will be removed. To remove event listeners with
a specific namespace, you can specify the namespace in the events parameter.
For example, "click:namespace" will remove all event listeners of
the "click" event with the namespace "namespace" and
":namespace" will remove all event listeners with the namespace
"namespace".
Remove event listeners from the node. Events can be separated by a space. For example, "click mouseover" will remove the event listener from both "click" and "mouseover" events. If the handler is not specified, all event listeners of the given type will be removed. If the type is "", all event listeners will be removed. To remove event listeners with a specific namespace, you can specify the namespace in the events parameter. For example, "click:namespace" will remove all event listeners of the "click" event with the namespace "namespace" and ":namespace" will remove all event listeners with the namespace "namespace".