I am trying to discover if it is possible to use the .queue() method in JQuery with multiple selectors in the same queue.
I can't find any examples of where things are added to the same queue from different selectors.
for example:
$('#aDiv').queue(function() {
$(this).fadeOut(1000);
});
$('#someOtherDiv').queue(function() {
$(this).fadeOut(1000);
});
I want these to occur sequentially, but they appear to be happening concurrently. I have tried creating named custom queues, but that makes no difference.
Is this even possible?
Thanks