I want to generate ajax requests on the fly, but I want to make sure I get a callback after they have all completed, so I want to wrap them within a .when .done statement like the following:
$.when(function(){
$.each(oOptions, function(){
var filePath = this.filePath,
dataType = this.dataType;
$.ajax({
url : filePath,
dataType : dataType
});
});
})
.done(function(){
console.log('success');
console.log(arguments);
})
.fail(function(){
console.log('failed');
});
where my options is an array of objects containing the filepath and datatype for each ajax request I want to make simultaneously. this code will return success, but the arguments is just a function, and the ajax requests never go through. any thoughts on how to do this?