Top ".when" questions

.when is a jQuery function for executing a function when the included AJAX request(s) have been completed.

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
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
jQuery Deferred: $.when() with multiple objects

I need a method to fetch different scripts with a callback. This method works ok: fetchScripts:function() { var _this=this; $.…

jquery promise deferred .when
Executing one function after another

All of these functions are in the main function which is called after jQuery async AJAX success event and it …

jquery .when
jQuery execute after 3 AJAX calls and loops are done

var request3 = window.SendAjax(window.siteRoot + "Home/GetTweets", "{}", function(msg) { //tweet $.each(msg, function(i, value) { ... }); console.log("loop done"); }); $.…

jquery .when