I have a problem with my code. In particular I want call sequentially 2 callback after keyup event.

$('myDiv').keyup(function(){ 

 function1
 function2

});

Is it possible waiting the loading of the first function (in function1 there are mysql requests, appending lines etc etc..) before the start of the next function?

Tanks a lot

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

There are two solutions, depending on what the functions are doing.

  1. function1 does not contain asynchronous calls/code:
    Just put the statements after each other:

    function1();
    function2();
    
  2. function1 contains asynchronous calls/code (I assume this is your case)
    Then you have to pass function2 as callback to function1 and call it when function1 handles the response:

    function1(function2);
    

    where function1 is e.g. like:

    function function1(cb) {
        $.ajax({ // asynchronous call
            //...
            success: function(data) {
                // response handled here
                cb(); // call the callback
            }
        });
    }
    
link|improve this answer
Tank you so much! I've solved my problem with your second solution. ;-) – Danilo Apr 11 '11 at 13:34
feedback

Put the second function into the first one's ajax method callback, for example:

function first(cb) {
    // request something. Passed in function will execute
    // once the request has completed.
    $("#foo").load('/foo', cb);
}

function second() {
    // do something
}

$('myDiv').keyup(function(){ 
    first(second);
});
link|improve this answer
feedback

Javascript is a single threaded it will only evaluate function2 after function1 has completed. However if you are doing an AJAX in function1 this will not be the case (AsynchronousJAX), you would want to get around this by putting the call to function2 in the response handler of the AJAX call in function1.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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