Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have

// Ajax setup
 $.ajaxSetup({
 beforeSend: function() {
 $('#general-ajax-load ').fadeIn();
 },
 complete: function() {
 $('#general-ajax-load ').fadeOut();
 }
});

on page load to set loading animation for all my ajax calls. It works perfect, except for load() calls. For loads only beforeSend is triggered, and complete never gets called, Which results with showing animation which never dissapears.

Any idea?

share|improve this question

3 Answers

up vote 0 down vote accepted

According to http://bugs.jquery.com/ticket/4086#comment:4, the "correct" way would be:

$(document).ajaxSend(function(event, jqXHR, settings) {
    $('#general-ajax-load ').fadeIn();
});

$(document).ajaxComplete(function(event, jqXHR, settings) {
    $('#general-ajax-load ').fadeOut();
});

I just did some testing and that indeed seems to work in all cases (including $.load).

share|improve this answer

Adding success fixed the problem, thanks (I can swear I tried it before)

 $.ajaxSetup({
 beforeSend: function() {
 $('#general-ajax-load ').fadeIn();
 },
 complete: function() {
 $('#general-ajax-load ').fadeOut();
 }
 success: function() {
 $('#general-ajax-load ').fadeOut();
 }
});

:)

share|improve this answer
What if the AJAX call results in an error (i.e. HTTP 401). Does the success handler is called as well ? – Guido García Jan 15 '11 at 13:03
I think no, but complete should be called. – umpirsky Jan 17 '11 at 10:09

The $.load manual says:

...It is roughly equivalent to $.get(url, data, success) except that it is a method rather than global function and it has an implicit callback function.

It would seem that $.load's implicit callback function is overriding the complete callback in your $.ajaxSetup. The $.ajaxSetup documentation says:

All subsequent Ajax calls using any function will use the new settings, unless overridden by the individual calls, until the next invocation of $.ajaxSetup().

I guess the solution would be to replace your $.load calls with $.get (or the more verbose $.ajax). You could also try using success instead.

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.