「別の $.when().done() の中に 2 番目の $.when().done() をネストすることは可能ですか。時々動作するようですが、一貫していないようです。問題は、2 番目の done()私がやろうとしていることのサンプルを以下に含めました。
$.when(
// config file
$.getScript("config.js")
).done(function(){
$.when(
// load js files
$.getScript("file1.js"),
$.getScript("file2.js"),
$.getScript("file3.js"),
$.getScript("file4.js"),
$.getScript("file5.js"),
$.getScript("file6.js")
).done(function(){
console.log("done")
});
});