.queue()

Show the queue of functions to be executed on the matched elements. Manipulate the queue of functions to be executed, once for each matched element.

.queue(queueName)🡢 Array

queueName StringA string containing the name of the queue. Defaults to fx, the standard effects queue.

Show the length of the queue.

JS
<p>The queue length is: <span></span></p>
<div></div>
CSS
div {
  margin: 3px;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0px;
  top: 60px;
  background: green;
  display: none;
}
div.newcolor {
  background: blue;
}
p {
  color: red;
}
HTML
var div = $("div");

function runIt() {
  div
    .show("slow")
    .animate({ left: "+=200" }, 2000)
    .slideToggle(1000)
    .slideToggle("fast")
    .animate({ left: "-=200" }, 1500)
    .hide("slow")
    .show(1200)
    .slideUp("normal", runIt);
}

function showIt() {
  var n = div.queue("fx");
  $("span").text(n.length);
  setTimeout(showIt, 100);
}

runIt();
showIt();
DEMO

.queue(queueName, newQueue)🡢 jQuery

queueName StringA string containing the name of the queue. Defaults to fx, the standard effects queue.
newQueue ArrayAn array of functions to replace the current queue contents.

.queue(queueName, callback)🡢 jQuery

queueName StringA string containing the name of the queue. Defaults to fx, the standard effects queue.
callback FunctionThe new function to add to the queue, with a function to call that will dequeue the next item.

Every element can have one to many queues of functions attached to it by jQuery. In most applications, only one queue (called fx) is used. Queues allow a sequence of actions to be called on an element asynchronously, without halting program execution. The typical example of this is calling multiple animation methods on an element. For example:

$("#foo").slideUp().fadeIn();

When this statement is executed, the element begins its sliding animation immediately, but the fading transition is placed on the fx queue to be called only once the sliding transition is complete.

The .queue() method allows us to directly manipulate this queue of functions. Calling .queue() with a callback is particularly useful; it allows us to place a new function at the end of the queue. The callback function is executed once for each element in the jQuery set.

This feature is similar to providing a callback function with an animation method, but does not require the callback to be given at the time the animation is performed.

$("#foo").slideUp();
$("#foo").queue(function () {
  alert("Animation complete.");
  $(this).dequeue();
});

This is equivalent to:

$("#foo").slideUp(function () {
  alert("Animation complete.");
});

Note that when adding a function with .queue(), we should ensure that .dequeue() is eventually called so that the next function in line executes.

As of jQuery 1.4, the function that's called is passed another function as the first argument. When called, this automatically dequeues the next item and keeps the queue moving. We use it as follows:

$("#test").queue(function (next) {
  // Do some stuff...
  next();
});

Queue a custom function.

JS
Click here...
<div></div>
CSS
div {
  margin: 3px;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0px;
  top: 30px;
  background: green;
  display: none;
}
div.newcolor {
  background: blue;
}
HTML
$(document.body).click(function () {
  $("div")
    .show("slow")
    .animate({ left: "+=200" }, 2000)
    .queue(function () {
      $(this).addClass("newcolor").dequeue();
    })
    .animate({ left: "-=200" }, 500)
    .queue(function () {
      $(this).removeClass("newcolor").dequeue();
    })
    .slideUp();
});
DEMO

Set a queue array to delete the queue.

JS
<button id="start">Start</button>
<button id="stop">Stop</button>
<div></div>
CSS
div {
  margin: 3px;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0px;
  top: 30px;
  background: green;
  display: none;
}
div.newcolor {
  background: blue;
}
HTML
$("#start").click(function () {
  $("div")
    .show("slow")
    .animate({ left: "+=200" }, 5000)
    .queue(function () {
      $(this).addClass("newcolor").dequeue();
    })
    .animate({ left: "-=200" }, 1500)
    .queue(function () {
      $(this).removeClass("newcolor").dequeue();
    })
    .slideUp();
});
$("#stop").click(function () {
  $("div").queue("fx", []).stop();
});
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 :)