Problem
My role is not waiting for the other to be finalized so it can continue, for example:
Example:
function buscando_dados(){
$.post('ajax.php',{},function(dados){
alert(dados);
});
}
function buscar_dados(){
buscando_dados();
alert('prosseguindo'); //Prosseguindo está função sem esperar a outra acabar a requisição
}
I do not know how to do alert('prosseguindo');
to be executed only after alert('dados');
and at the moment this is not happening.
How can I do this?