Top "Jquery-deferred" questions

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

Retry a jquery ajax request which has callbacks attached to its deferred

I'm trying to implement a system of retrying ajax requests that fail for a temporary reason. In my case, it …

jquery ajax jquery-deferred
Using jQuery load with promises

I'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 promise
Asynchronous Loop of jQuery Deferreds (promises)

I am trying to create what I think is referred to as a "Waterfall". I want to sequentially process an …

javascript jquery jquery-deferred waterfall
pipe() and then() documentation vs reality in jQuery 1.8

Update: This question is now out of date as the documentation is accurate and up to date. I've been exploring …

javascript jquery jquery-deferred
How can I tell if an object is a jQuery Promise/Deferred?

I have a function that takes a single argument. I need to be able to tell if this argument is …

javascript jquery jquery-deferred
Problems inherent to jQuery $.Deferred (jQuery 1.x/2.x)

@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-promise
jQuery jqXHR - cancel chained calls, trigger error chain

I 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-deferred
Throwing an Error in jQuery's Deferred object

I have an $.ajax promise and want to check whether my (syntactically valid) response contains an error, triggering the rejected …

javascript error-handling jquery-deferred promise
jquery custom deferred functions

I have three functions i'm trying to run, the first two are doing some async stuff that need data for …

javascript jquery jquery-deferred deferred
Chaining ajax requests with jQuery's deferred

I have a web app which must call the server multiple times. So far, I had a long nested callback …

javascript jquery jquery-deferred