vote up 1 vote down star

Hi,

what is the best way to show a spinner?

I have prepared a div(id="spinner"), that should be visible during loading.

Best regards

flag

may i suggest renaming to "Showing a spinner during an AJAX request?" – AlexDuggleby Oct 2 at 11:50

2 Answers

vote up 2 vote down check

Do you use jQuery?

If so you can use:

ajaxStart & ajaxStop: http://docs.jquery.com/Ajax

For example:

$(function(){

// hide it first
$("#spinner").hide();

// when an ajax request starts, show spinner
$.ajaxStart(function(){
    $("#spinner").show();
});

// when an ajax request complets, hide spinner    
$.ajaxStop(function(){
    $("#spinner").hide();
});

});

You can fine tune a little with a request counter that increments and decrements in case you have a lot of simultaneous requests.

If you don't use jQuery, check out the jQuery Source code for which events ajaxStart actually register in plain old javascript.

HTH Alex

link|flag
I am using prototype. – brainfck Oct 2 at 11:55
Ok not quite as easy, but check this page prototypejs.org/api/ajax/request and the events: - onCreate - onComplete – AlexDuggleby Oct 2 at 11:58
Thanks, I have changed to jQuery. Prototype sucks:) – brainfck Oct 2 at 12:24
vote up 1 vote down
$().ajaxSend(function(r, s) {
    $("#spinner").show();
});

$().ajaxStop(function(r, s) {
    $("#spinner").fadeOut("fast");
});
link|flag

Your Answer

Get an OpenID
or

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