jQuery's deferred (also known as promises and futures) can be used to manage callback queues
I'm trying to implement a system of retrying ajax requests that fail for a temporary reason. In my case, it …
jquery ajax jquery-deferredI'm still trying to wrap my head around deferred and what not, so with this in mind I have a …
jquery jquery-deferred jquery-load promiseI am trying to create what I think is referred to as a "Waterfall". I want to sequentially process an …
javascript jquery jquery-deferred waterfallUpdate: This question is now out of date as the documentation is accurate and up to date. I've been exploring …
javascript jquery jquery-deferredI have a function that takes a single argument. I need to be able to tell if this argument is …
javascript jquery jquery-deferred@Domenic has a very thorough article on the failings of jQuery deferred objects: You're missing the Point of Promises. In …
jquery promise jquery-deferred q es6-promiseI am creating a ajax utility for interfacing with my server methods. I would like to leverage jQuery 1.5+ deferred methods …
jquery jquery-1.5 jquery-deferredI have an $.ajax promise and want to check whether my (syntactically valid) response contains an error, triggering the rejected …
javascript error-handling jquery-deferred promiseI have three functions i'm trying to run, the first two are doing some async stuff that need data for …
javascript jquery jquery-deferred deferredI have a web app which must call the server multiple times. So far, I had a long nested callback …
javascript jquery jquery-deferred