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