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({


           });

   }

});
link|improve this question

69% accept rate
I'm really not understanding your question, could you think of a way to reword it? Perhaps have some sample code? – Paul Mar 11 '11 at 2:04
feedback

2 Answers

up vote 3 down vote accepted

Call B inside of the success handler for A..

$.ajaxA({
  url: "test.html",
  context: document.body,
  success: function(){
      $.ajaxB....
  }
});

Jqery Ajax API docs for more info on the success method.

link|improve this answer
Rick u mean something like above ?? – Eric T Mar 11 '11 at 2:11
Yes... depending on the conditions for running B you can do the success handler or the complete handler (which will get called everytime, success or failure) like @alex mentioned. – Rick Hochstetler Mar 11 '11 at 2:12
feedback

On the complete callback of A ajax, make the B ajax call.

link|improve this answer
alex u mean something like what I do in above ? – Eric T Mar 11 '11 at 2:10
@Eric Yes. Though it depends if you want to run it on error/success or both. The above will do both. – alex Mar 11 '11 at 2:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.