how to execute jquery code one by one? I want first do "function 1", when finish the job. then do "function 2"...

Thanks.

<script type="text/javascript">
jQuery(document).ready(function(){
  $(document).ready(function(){ 
    //function 2, jqeury.ajax  
  });  
  $(document).ready(function(){ 
    //function 3, jqeury.json 
  });  
  $('#col').load("home.html"); 
    //function 4, jqeury.load
  });  
});
</script>
<script type="text/javascript">
jQuery(document).ready(function(){
  //function 1,  a jquery slider plungin
});
</script>
link|improve this question

Can you give us more code and leave out the multiple document ready functions, you won't have to listen for doc ready more than once. So keep the parent document ready and show us the guts of function 2 and 3, usually when you have anonymous jquery functions like that, you can call the next function in line with a comma after the function call. – Tim Joyce Jun 7 '11 at 12:21
Everything will run in order one thing at a time by default, unless specified otherwise - such as asynchronously loading ajax. – Jleagle Jun 7 '11 at 12:22
Possible duplicate: stackoverflow.com/questions/6251228/… – marcosfromero Jun 7 '11 at 12:23
1  
if you are using Jquery 1.5 and above then you can use .when and .then (Deferred Objects) api.jquery.com/category/deferred-object – Raja Jun 7 '11 at 12:36
feedback

5 Answers

up vote 8 down vote accepted

You don't need so many document ready calls. One will suffice

If you mean you want to call each method after one has received the response from the AJAX calls you are making, put the code in the callback;

$(document).ready(function(){
    one(); //call the initial method
});

function one(){
   $.get('url', {}, function(data){
      two(); //call two() on callback
   })
}

function two(){
   $.getJSON('url', {}, function(data){
       three(); //ditto
   })
}

function three(){
   $('#selector').load('url');
}

The docs

http://api.jquery.com/jQuery.get/

http://api.jquery.com/jQuery.getJSON/

http://api.jquery.com/load/

link|improve this answer
feedback

Instead of using more than one document.ready() use callback functions as below.

<script type="text/javascript">
function ajaxfun() {
    //function 2, jqeury.ajax  
    //in ajax callback call the jsonfun();
}  
function jsonfun(){ 
    //function 3, jqeury.json 
    //after json function add the next function in it callback.
}  
</script>
<script type="text/javascript">
jQuery(document).ready(function(){
  //function 1,  a jquery slider plungin
  //Call ajaxfun() here to execute second.
});
</script>
link|improve this answer
feedback

It looks like you are doing three ajax calls. Since jQuery 1.5, we now have a Deferred object (technically a jqXHR object) returned from ajax calls, so you can chain them like this:

$(function() { // this is a document ready function.  it's all you need.
    $.ajax(/* your ajax specs */).done(function() {
        $.getJSON('somepath').done(function() {
            $('#container').load('etc.');
        });
    });
});
link|improve this answer
feedback

use setTimeout function

function f1(para) {
  // ...
  // do work;
  setTimeout(f2, 10);
}

function f2() {
  // ...
  // do work
  setTimeout(f3, 10);
}
link|improve this answer
setTimeout is a bad solution. You cannot guarantee that the ajax call will be finished before the next setTimeout expires and executes. This will cause a race condition. – Stephen Jun 7 '11 at 12:30
feedback
<script type="text/javascript">

jQuery(document).ready(function(){
  function2(){  //declare what function 2 will do here
    //function 2, jqeury.ajax  
  } 
  function3(){ 
    //function 3, jqeury.json 
  }  
  $('#col').load("home.html"); 
    //function 4, jqeury.load
  });  
});
</script>
<script type="text/javascript">
jQuery(document).ready(function(){
  //function 1,  a jquery slider plungin

  function2(); // execute function 2 after 1
  function3();
});
</script>
link|improve this answer
function 2 and 3 will not wait for the asynchronous calls to the server to complete before firing. – Stephen Jun 7 '11 at 12:31
@stephen If I wanted to wait for every post to finish I wouldn't use asynch though. afaik there is an option to turn that off – gen Jun 7 '11 at 12:37
That's true: If you wanted to lock up the browser until the synchronous request resolved. hunlock.com/blogs/Snippets:_Synchronous_AJAX – Stephen Jun 7 '11 at 12:48
@stephen: Hmm yes, I see what you mean :) – gen Jun 7 '11 at 12:54
feedback

Your Answer

 
or
required, but never shown

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