As title, I have two ajax() has to go through but in condition that A ajax has to be go through in order to do B ajax.
A ajax as in <<=== .ajaxFileupload()
B ajax as in <<=== .ajax()
Any recommend to do the condition so that A must be success in order to do B ?? or any method that I shall implement ?
To alex:
u mean something like this ??
$.ajaxFileUpload({
.....
.....
success:function(data){
$.ajax({
});
}
});