This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Public Method Question Editor API

off()

Removes a previously-bound callback function for an event.

When called with no parameters, callbacks for all events are removed.

Examples

questionEditorApp.off("preview:changed"); //Removes callbacks for the 'preview:changed' event.
questionEditorApp.off(); //Removes callbacks for all events.

Arguments

  • event_name string

    Name of the event that you want to stop listening to.

  • event_callback function

    If no callback is provided, all callbacks for the event_name will be removed.

  • context object

    If no context is provided, all callbacks for the event_name, event_callback combination will be removed.

Return value

None (undefined).

Was this article helpful?