ASP.NET MVC + jQuery + IIS6: Multiple Ajax requests
I'm not sure where the problem is... I have an ajax request that checks the tracking information for a package on a page with a list of packages: $(".fedex_status").each(function() { var item = this; // some code to construct tracking_url $.ajax({ type: "GET", url: tracking_url, async: true, cache: false, success: function(data) { $(item).html("(" + data + ")"); }, error: function() { $(item).html("request failed...");} }); }); So if there are 10 packages on the page (10 things with class 'fedex_status') 10 requests are created. The requests work fine, but results are returned one at a time