I am confused,is "queue" for animations and deferred for "ajax"? Could someone tell me some typical examples?
|
feedback
|
|
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 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. | ||||
|
feedback
|