.off()

Remove an event handler.

.off(events, selector, function(eventObjectEvent))🡢 jQuery

events StringOne or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin".
selector StringA selector which should match the one originally passed to .on() when attaching event handlers.
function(eventObjectEvent) FunctionA handler function previously attached for the event(s), or the special value false.

.off(events, selector)🡢 jQuery

events PlainObjectAn object where the string keys represent one or more space-separated event types and optional namespaces, and the values represent handler functions previously attached for the event(s).
selector StringA selector which should match the one originally passed to .on() when attaching event handlers.

.off(event)🡢 jQuery

event EventA jQuery.Event object.

.off()🡢 jQuery

The .off() method removes event handlers that were attached with .on(). See the discussion of delegated and directly bound events on that page for more information. 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.

If a simple event name such as "click" is provided, all events of that type (both direct and delegated) are removed from the elements in the jQuery set. When writing code that will be used as a plugin, or simply when working with a large code base, best practice is to attach and remove events using namespaces so that the code will not inadvertently remove event handlers attached by other code. All events of all types in a specific namespace can be removed from an element by providing just a namespace, such as ".myPlugin". At minimum, either a namespace or event name must be provided.

To remove specific delegated event handlers, provide a selector argument. The selector string must exactly match the one passed to .on() when the event handler was attached. To remove all delegated events from an element without removing non-delegated events, use the special value "**".

A handler can also be removed by specifying the function name in the handler argument. When jQuery attaches an event handler, it assigns a unique id to the handler function. Handlers proxied by jQuery.proxy() or a similar mechanism will all have the same unique id (the proxy function), so passing proxied handlers to .off may remove more handlers than intended. In those situations it is better to attach and remove event handlers using namespaces.

As with .on(), you can pass events as an object instead of specifying an events string and handler function as separate arguments. The keys for the events object are events and/or namespaces; the values are handler functions or the special value false.

Add and remove event handlers on the colored button.

JS
<button id="theone">Does nothing...</button>
<button id="bind">Add Click</button>
<button id="unbind">Remove Click</button>
<div style="display: none">Click!</div>
CSS
button {
  margin: 5px;
}
button#theone {
  color: red;
  background: yellow;
}
HTML
function flash() {
  $("div").show().fadeOut("slow");
}
$("#bind").click(function () {
  $("body").on("click", "#theone", flash).find("#theone").text("Can Click!");
});
$("#unbind").click(function () {
  $("body")
    .off("click", "#theone", flash)
    .find("#theone")
    .text("Does nothing...");
});
DEMO

Remove all event handlers from all paragraphs:

HTML
$("p").off();
DEMO

Remove all delegated click handlers from all paragraphs:

HTML
$("p").off("click", "**");
DEMO

Remove just one previously bound handler by passing it as the third argument:

HTML
var foo = function () {
  // Code to handle some kind of event
};

// ... Now foo will be called when paragraphs are clicked ...
$("body").on("click", "p", foo);

// ... Foo will no longer be called.
$("body").off("click", "p", foo);
DEMO

Unbind all delegated event handlers by their namespace:

HTML
var validate = function () {
  // Code to validate form entries
};

// Delegate events under the ".validator" namespace
$("form").on("click.validator", "button", validate);

$("form").on("keypress.validator", "input[type='text']", validate);

// Remove event handlers in the ".validator" namespace
$("form").off(".validator");
DEMO

Looking for a Web Developer?

👋

Hi! I'm Basti, author of this site. If you are looking for a web developer with 15+ years of experience, holla at me!

Be it the good 'ol jQuery, vanilla JS or modern frameworks like Vue and Svelte, front- or backend, I can help you.

Just write me at jobs@jqapi.com :)