Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to have the callback of one AJAX trigger another AJAX call? Or will that go out of scope?

share|improve this question

3 Answers

up vote 2 down vote accepted

Sure...

...
success: function(data){
     $.ajax({.....
}
....

and as stated before, your scope is captured by the closure.

share|improve this answer

You should be able to do this. Closures keep everything in scope.

share|improve this answer

In addition to Matthew's answer, you can also use setTimeout() to repeat the AJAX call at a predefined interval, as in the following example:

function autoUpdate() {

   $.ajax({
      type: 'GET',
      url:  '/web-service/?no_cache=' + (new Date()).getTime(),

      success: function(msg) {
         // Add your logic here for a successful AJAX response.
         // ...
         // ...

         // Relaunch the autoUpdate() function in 5 seconds
         setTimeout(autoUpdate, 5000);
      }
   });
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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