jQuery, Each() and Async Gets

H04K0067

One of the things to keep in mind when using jQuery is that nothing is a blocking call.  Sure, there is a certain sequence to when things operate.  But, to be safe, you should always assume that step two will happen during step one.

Nowhere is this more evident than when retrieving content from a URL and inserting that content in your page.

The temptation is to write code that looks something like this

 $.each(json, function(index, entry)
{
    jQuery.get(entry['url'], function(html)
    {
        // insert the HTML here.
    }
}

The problem with this is that jQuery.get is an asynchronous call.  This means that once the get has fired, the each loop will continue.  This can cause all kinds of trouble for you, including having a complete iteration skipped, or if you are doing some kind of concatenation prior to inserting the HTML, having HTML for one iteration showing up in the middle of another.

Not exactly what you had in mind, eh?

But there is a fix.  Use the ajax call instead and specify async:false to force the call to complete before allowing another call.

$.each(json, function(index, entry)
{
    jQuery.ajax({ url:  directory + '/' + entry['url'] , success: function(html)
        {
            // insert the HTML here.
        }
    }, async: false
});

Note too that using ajax without the async: false is the same as just using get.

 


Other post in jQuery

Other Related Items:

ESA Medical Premium 40 Electrodes of 2" x 2" Square Electrode Pads with Tyco ® Gel 10 Resealable Packs of 4 Electrodes Each by Pro-Patch ®ESA Medical Premium 40 Electrodes of 2" x 2" Square Electrode Pads with Tyco ® Gel 10 Resealable Packs of 4 Electrodes Each by Pro-Patch ®-Premium Black Carbon Conductor -Tan Cloth Back electrodes. -Tyco ® adhesive gel. Total 40 packs Product Information: Replacement electrodes for... Read More >
Xbox 360 Play & Charge KitXbox 360 Play & Charge KitRecharge your Xbox 360 Wireless Controller while you play and kiss disposable batteries goodbye! Complete with a charging cable and rechargeable battery pack, the Xbox 360 Play and Charge Kit is all you need to juice up your Wireless Controller - even in the midst of battle.
Moving Blanket Supreme 8 LBS EachMoving Blanket Supreme 8 LBS EachThis moving blanket is the cadillac.  The Supreme Moving Blankets are made of 100% Cotton and weigh in at 90-95 pounds per dozen.  This is the top c... Read More >

Related Post

Comments are closed.

DotNetNuke Sponsor

 

Most Valuable Blogger
Sponsor