I needed a simple queue system for a project I’m working on and realized that jQuery already exposed its own:
Queues in jQuery are used for animations. You can use them for any purpose you like. They are an array of functions stored on a per element basis, using
jQuery.data()
. They are First-In-First-Out (FIFO). You can add a function to the queue by calling.queue()
, and you remove (by calling) the functions using.dequeue()
.To understand the internal jQuery queue functions, reading the source and looking at examples helps me out tremendously. One of the best examples of a queue function I’ve seen is
.delay()
:
Code language: JavaScript
$.fn.delay = function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;
type = type || "fx";
return this.queue( type, function() {
var elem = this;
setTimeout(function() {
jQuery.dequeue( elem, type );
}, time );
});
};
The default queue -
fx
The default queue in jQuery is
fx
. The default queue has some special properties that are not shared with other queues.
- Auto Start: When calling
$(elem).queue(function(){});
thefx
queue will automaticallydequeue
the next function and run it if the queue hasn’t started.- ‘inprogress’ sentinel: Whenever you
dequeue()
a function from thefx
queue, it willunshift()
(push into the first location of the array) the string"inprogress"
- which flags that the queue is currently being run.- It’s the default! The
fx
queue is used by.animate()
and all functions that call it by default.NOTE: If you are using a custom queue, you must manually
.dequeue()
the functions, they will not auto start!Retrieving/Setting the queue
You can retrieve a reference to a jQuery queue by calling
.queue()
without a function argument. You can use the method if you want to see how many items are in the queue. You can usepush
,pop
,unshift
,shift
to manipulate the queue in place. You can replace the entire queue by passing an array to the.queue()
function.Quick Examples:
Code language: JavaScript
// lets assume $elem is a jQuery object that points to some element we are animating.
var queue = $elem.queue();
// remove the last function from the animation queue.
var lastFunc = queue.pop();
// insert it at the beginning:
queue.unshift(lastFunc);
// replace queue with the first three items in the queue
$elem.queue(queue.slice(0,3));
[…]
[C]ustom queue example
Code language: JavaScript
var theQueue = $({}); // jQuery on an empty object - a perfect queue holder
$.each([1,2,3],function(i, num) {
// lets add some really simple functions to a queue:
theQueue.queue('alerts', function(next) {
// show something, and if they hit "yes", run the next function.
if (confirm('index:'+i+' = '+num+'\nRun the next function?')) {
next();
}
});
});
// create a button to run the queue:
$("<button>", {
text: 'Run Queue',
click: function() {
theQueue.dequeue('alerts');
}
}).appendTo('body');
// create a button to show the length:
$("<button>", {
text: 'Show Length',
click: function() {
alert(theQueue.queue('alerts').length);
}
}).appendTo('body');