I am confused,is "queue" for animations and deferred for "ajax"? Could someone tell me some typical examples?

link|improve this question
feedback

1 Answer

You're mostly correct.

"deferred objects" can be used for processing asynchronous events - you initiate an action and then register a callback which will be invoked when the action has completed. This includes AJAX, although there are plenty of other uses too.

jQuery queues are indeed primarily used to maintain a queue of (animation) functions to be called in sequence, and .queue() specifically is used to add your own function into an animation queue.

To further complicate matters some of the animation functions can also result in you getting a deferred object on which you can register further callbacks, but I can't find the relevant documentation just now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.