私には2つの機能があります。
function f1() {
$.ajax(..., success: function(response) {
// some code executed whenever request is completed.
}
}
function f2() {
// my code
}
これらの関数を次々と呼び出す必要があります。
f1() // waiting until ajax request in the function is complete.
f2()
試してみ$.when().then()
ましたが、うまくいかないようでした。