Posts by Felipe Assunção • 1 point
1 post
-
0
votes0
answers122
viewsQ: Error AJAX Request - I cannot manipulate the return
I have the following AJAX request: function getJson(link) { var retorno; $.ajax({ type: "POST", url: link, dataType: "json", async: false, success: function (data) { alert(data); retorno = data; }…