0
Within the following scenario:
funcao1 = function() {
$.ajax({
success: function(data) {
return data;
}
});
}
funcao2 = function() {
var dados = funcao1();
}
It is possible that I receive, even if it is through Premomises, the result of the funcao1
in funcao2
?
See in the documentation what the function
$.ajax
returns.– Woss