DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • jQuery vs. Angular: Common Differences You Must Know
  • CSS3 Transitions vs. jQuery Animate: Performance
  • Better Scaffolding with jQuery - Part I
  • How to Call Rest API by Using jQuery AJAX in Spring Boot? [Video]

Trending

  • The AI Autonomy Spectrum: 7 Architecture Patterns for Intelligent Applications
  • If You Can Survive a Toddler, You Can Ship LLMs in Production
  • Deployment Lessons You Only Learn the Hard Way
  • How to Build an Agentic AI SRE Co-Pilot for Incident Response
  1. DZone
  2. Coding
  3. Frameworks
  4. jQuery, Each() and Async Gets

jQuery, Each() and Async Gets

By 
Dave Bush user avatar
Dave Bush
·
Dec. 03, 09 · News
Likes (0)
Comment
Save
Tweet
Share
16.2K Views

Join the DZone community and get the full member experience.

Join For Free

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.

No where 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.

 

JQuery

Published at DZone with permission of Dave Bush. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • jQuery vs. Angular: Common Differences You Must Know
  • CSS3 Transitions vs. jQuery Animate: Performance
  • Better Scaffolding with jQuery - Part I
  • How to Call Rest API by Using jQuery AJAX in Spring Boot? [Video]

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook