.toggle()

Bind two or more handlers to the matched elements, to be executed on alternate clicks.

.toggle(function(eventObjectEvent), function(eventObjectEvent), function(eventObjectEvent))🡢 jQuery

function(eventObjectEvent) FunctionA function to execute every even time the element is clicked.
function(eventObjectEvent) FunctionA function to execute every odd time the element is clicked.
function(eventObjectEvent) FunctionAdditional handlers to cycle through after clicks.

Note: This method signature was deprecated in jQuery 1.8 and removed in jQuery 1.9. jQuery also provides an animation method named .toggle() that toggles the visibility of elements. Whether the animation or the event method is fired depends on the set of arguments passed.

The .toggle() method binds a handler for the click event, so the rules outlined for the triggering of click apply here as well.

For example, consider the HTML:

<div id="target">Click here</div>

Event handlers can then be bound to the <div>:

$("#target").toggle(
  function () {
    alert("First handler for .toggle() called.");
  },
  function () {
    alert("Second handler for .toggle() called.");
  }
);

As the element is clicked repeatedly, the messages alternate:

First handler for .toggle() called.
Second handler for .toggle() called.
First handler for .toggle() called.
Second handler for .toggle() called.
First handler for .toggle() called.

If more than two handlers are provided, .toggle() will cycle among all of them. For example, if there are three handlers, then the first handler will be called on the first click, the fourth click, the seventh click, and so on.

The .toggle() method is provided for convenience. It is relatively straightforward to implement the same behavior by hand, and this can be necessary if the assumptions built into .toggle() prove limiting. For example, .toggle() is not guaranteed to work correctly if applied twice to the same element. Since .toggle() internally uses a click handler to do its work, we must unbind click to remove a behavior attached with .toggle(), so other click handlers can be caught in the crossfire. The implementation also calls .preventDefault() on the event, so links will not be followed and buttons will not be clicked if .toggle() has been called on the element.

Toggle a style on table cells. (Not recommended. Use .toggleClass() instead.):

HTML
$("td").toggle(
  function () {
    $(this).addClass("selected");
  },
  function () {
    $(this).removeClass("selected");
  }
);
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 :)