Top "Jquery-deferred" questions

jQuery's deferred (also known as promises and futures) can be used to manage callback queues

jQuery Deferred - waiting for multiple AJAX requests to finish

I have a three layer deep chain of deferred ajax calls, and ideally they are going to kick the promise …

jquery jquery-deferred
What are deferred objects?

jQuery 1.5 adds "Deferred Objects". What are they, and what exactly do they do?

jquery jquery-deferred
how does jquery's promise method really work?

I don't really understand what delegate and promise are. According to the docs - delegate would bind a selector and …

ajax jquery jquery-deferred
When should I use jQuery deferred's "then" method and when should I use the "pipe" method?

jQuery's Deferred has two functions which can be used to implement asynchronous chaining of functions: then() deferred.then( doneCallbacks, failCallbacks ) …

jquery asynchronous jquery-deferred decoupling jquery-chaining
How to make all AJAX calls sequential?

I use jQuery. And I don't want parallel AJAX calls on my application, each call must wait the previous before …

jquery ajax parallel-processing jquery-deferred sequential
Deferred versus promise

What is the difference between Deferred and Promise other than the jQuery versions? What should I use for my need? …

jquery jquery-deferred promise
Check Internet connectivity with jquery

I am trying to check for the internet connection by sending a GET request to the server. I am a …

javascript jquery jquery-deferred
How to chain ajax calls using jquery

I need to make a series of N ajax requests without locking the browser, and want to use the jquery …

jquery ajax jquery-deferred deferred
Asynchronous JavaScript - Callbacks vs Deferred/Promise

Possible Duplicate: What are the differences between Deferred, Promise and Future in Javascript? Lately I've been making an effort to …

javascript jquery-deferred commonjs
Return already resolved promise

I have an existing project that has a lot of asynchronous functions that return promises. I'm adding some caching so …

jquery jquery-deferred