Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen a number of posts (append supposedly immediate) with conflicting accepted answers on this. We're using JQuery 1.4 (http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js) and append() seems to be asynchronous, such that:

Edited to show code in context of AJAX callback

 ...
 var message = $.ajax({
   type: "GET",
   url: "/getVolumes/" +  _Id,
   async: false 
 }).responseText;
 if (parseInt(message) != 0){
   var $results = $(message);
   $MAIN_DIV.append($results);
   retrieveTargets();
 }
...    
function retrieveTargets(){
  var $targets = $(".resultTargets");
}

Executes and creates the page as expected, yet the targets query yields nothing at runtime. Running the same code in the JS console retrieves the elements as expected.

If this is the expected behavior in JQuery what's the proper way to wait until append is finished?

share|improve this question
2  
jQuery 1.8?? how come?? You're from the future?? :) – DrStrangeLove Feb 22 '11 at 23:21
2  
Append is synchronous but your Ajax call isn't. Where is this code located? In the callback function of your ajax call? – Capsule Feb 22 '11 at 23:23
Edited with the right version. I bet this would work the way I want in 1.8. – RSG Feb 22 '11 at 23:25
1  
what is .resultTargets? is it an element in your ajax response? You could access it that way too: var targets = $results.find('.resultTargets'); – Andy Feb 22 '11 at 23:30
What happens if you place console.log( $MAIN_DIV.length ) just before the $MAIN_DIV.append(...? – user113716 Feb 22 '11 at 23:37

1 Answer

up vote 3 down vote accepted

All of the comments helped track this down. I was following a red herring in the console. The problem wasn't with synchronicity, it was with the next lines:

$targets.each( function(){
  ...
  this.html();
  ...

Needed to be

$(this).html();

In short, everyone was correct. Jquery append() behaves synchronously.

share|improve this answer
THANK YOU, for actually answering the question indicated by the title (and putting it into bold to boot), rather than just explaining how your particular problem was solved. – Adam Tolley Oct 22 '12 at 19:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.