Top "Jquery-deferred" questions

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

jQuery deferreds and promises - .then() vs .done()

I've been reading about jQuery deferreds and promises and I can't see the difference between using .then() & .done() for …

jquery promise jquery-deferred
How can jQuery deferred be used?

jQuery 1.5 brings the new Deferred object and the attached methods .when, .Deferred and ._Deferred. For those who haven't used .Deferred …

javascript jquery jquery-deferred
javascript function wait until another function to finish

I have two javascript functions that are called from android. After long debug sessions finally I realized that the problem …

javascript jquery callback jquery-deferred
Pass in an array of Deferreds to $.when()

Here's an contrived example of what's going on: http://jsfiddle.net/adamjford/YNGcm/20/ HTML: <a href="#">Click me!&…

javascript jquery argument-passing jquery-deferred .when
what is difference between success and .done() method of $.ajax

Can anyone help me? I am not able to understand the difference between success and .done() of $.ajax. If possible …

jquery jquery-deferred
jQuery.when understanding

I am trying to use the jQuery.when to fire two ajax requests and then call some function after the …

jquery ajax jquery-deferred
How to prevent the white 'flash' on page load created by background image loading delay?

The problem is, on most sites on the web, there are background images. They take time to load. Ordinarily, it …

javascript css jquery-deferred
Reactjs async rendering of components

I want to render my component after my ajax request is done. Below you can see my code var CategoriesSetup = …

javascript ajax asynchronous reactjs jquery-deferred
How do you work with an array of jQuery Deferreds?

I have an application that requires data be loaded in a certain order: the root URL, then the schemas, then …

jquery jquery-deferred .when
Chain multiple "then" in jQuery.when

I have a function that does something like this: function do_something() { // some code return $.when(foo, bar, baz).then(…

javascript jquery jquery-deferred