Questions API Methods
off()
Removes a previously-bound callback function for an event.
When called with no arguments, all event listeners are removed.
If no eventCallback is provided, all event handlers for the eventName will be removed.
If no context is provided, all event bindings for the eventName, callback combination will be removed.
Arguments
-
eventName string
Name of the event that you want to stop listening to
-
eventCallback callback
If no callback is provided, all event handlers for the eventName will be removed.
-
context object
If no context is provided, all event bindings for the eventName, eventCallback combination will be removed
Return value
None (undefined
).