In Prototype I can show a "loading..." image with this code:


var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars, 
onLoading: showLoad, onComplete: showResponse} );

function showLoad () {
    ...
}

In jQuery, I can load a server page into an element with this:

$('#message').load('index.php?pg=ajaxFlashcard');

but how do I attach a loading spinner to this command as I did in Prototype?

link|improve this question

80% accept rate
9  
For users looking for an actual preloader/spinner and not just how to call a function, you can check out the following jQuery plugin, Spinner: jqueryin.com/projects/spinner-jquery-preloader-plugin – cballou Jul 1 '10 at 1:57
If you want to show a spinner whilst images are loading, you can use my jQuery plugin waitForImages. – alex Oct 27 '11 at 8:46
this is a good method - blog.oio.de/2010/11/08/… – SyntaxGoonoo Apr 17 at 23:03
feedback

10 Answers

up vote 232 down vote accepted

there's a couple of ways. My preferred way is to attach a function to the ajaxStart/Stop events on the element itself.

$('#loadingDiv')
    .hide()  // hide it initially
    .ajaxStart(function() {
        $(this).show();
    })
    .ajaxStop(function() {
        $(this).hide();
    })
;

The ajaxStart/Stop functions will fire whenever you do any ajax calls.

link|improve this answer
15  
That's probably too global for one simple load into a DIV. – dalbaeb Jul 29 '09 at 17:05
118  
too global? how many different "please wait" messages do you want? – nickf Aug 1 '09 at 17:59
3  
Perfect! nice and clean – Derek Dec 29 '09 at 21:32
5  
this way unfortunately you can't control loading div positioning in case you don't want to just show a modal loading window, but show it near the element waiting for ajax content to be loaded in... – glaz666 Oct 17 '10 at 11:44
4  
ajaxStart and ajaxStop are jQuery events so you can namespace them: stackoverflow.com/questions/1191485/… docs.jquery.com/Namespaced_Events – David Xia Apr 16 '11 at 22:57
show 1 more comment
feedback

For jQuery I use

jQuery.ajaxSetup({
  beforeSend: function() {
     $('#loader').show();
  },
  complete: function(){
     $('#loader').hide();
  },
  success: function() {}
});
link|improve this answer
works for me, the html should have something like: <div id='loader'><img src="spinner.gif"/></div> – yigal Jan 4 at 6:40
feedback
$('#message').load('index.php?pg=ajaxFlashcard', null, showResponse);
showLoad();

function showResponse() {
    hideLoad();
    ...
}

http://docs.jquery.com/Ajax/load#urldatacallback

link|improve this answer
You could have timing problems there, don't you? – Tim Büthe Nov 14 '11 at 14:11
1  
@UltimateBrent I think you got it wrong. Why is showLoad() not a callback? JavaScript will load content asynchronously. showLoad() will work even before the content is loaded if i'm correct. – Jaseem Dec 1 '11 at 11:49
feedback

You can insert the animated image into the DOM right before the AJAX call, and do an inline function to remove it...

$("#myDiv").html('<img src="images/spinner.gif" alt="Wait" />');
$('#message').load('index.php?pg=ajaxFlashcard', null, function() {
  $("#myDiv").html('');
});

This will make sure your animation starts at the same frame on subsequent requests (if that matters). Note that old versions of IE might have difficulties with the animation.

Good luck!

link|improve this answer
wow thanks this realy worked for me – streetparade Dec 24 '09 at 15:22
5  
Top tip: Preload the spinner.gif in a div with display set to none. Otherwise you might get a bit of a delayed spinner effect as the spinner still downloads. – uriDium Jun 1 '10 at 8:06
nice tip, much simpler than using somebody else's plugin – Gordon Carpenter-Thompson Jun 17 '11 at 13:41
Nice! but dear , one thing more that I want to display spinner for 2 seconds even the page has already loaded. – Both FM Mar 27 at 10:19
@BothFM Because people enjoy waiting for things...? – Josh Stodola Mar 28 at 17:52
feedback

Use the loading plugin: http://plugins.jquery.com/project/loading

$.loading.onAjax({img:'loading.gif'});
link|improve this answer
3  
One plugin for this simple task? That is not really a good solution is it? Who wants to load 100 scripts on a page? – Jaseem Dec 1 '11 at 11:50
1  
What is a "good" number of plugins? 99? 48? 7? – Mark Wilden Mar 30 at 22:11
Agreed. Compress and concatenate, if you want better performance. – Nathan Bubna Apr 2 at 14:05
feedback

Variant: I have an icon with id="logo" at the top left of the main page; a spinner gif is then overlaid on top (with transparency) when ajax is working.

jQuery.ajaxSetup({
  beforeSend: function() {
     $('#logo').css('background', 'url(images/ajax-loader.gif) no-repeat')
  },
  complete: function(){
     $('#logo').css('background', 'none')
  },
  success: function() {}
});
link|improve this answer
feedback

JS --

$.listen('click', '#captcha', function() {
    $('#captcha-block').html('<div id="loading" style="width: 70px; height: 40px; display: inline-block;" />');
    $.get("/captcha/new", null, function(data) {
        $('#captcha-block').html(data);
    }); 
    return false;
});

CSS --

#loading { background: url(/image/loading.gif) no-repeat center; }
link|improve this answer
feedback

You can simply assign an loader image to the same tag on which you later will load content using ajax call.

$("#message").html('<span>Loading...</span>');

$('#message').load('index.php?pg=ajaxFlashcard');

//you can replace span tag with image tag also.

link|improve this answer
It will be hard to manage UI this way. We may need completely different styles for the "loading" text and final message. We can use the callback method mentioned above for handling this problem – Jaseem Dec 1 '11 at 11:52
feedback

I do this:

var preloaderdiv = '<div class="thumbs_preloader">Loading...</div>';
           $('#detail_thumbnails').html(preloaderdiv);
             $.ajax({
                        async:true,
                        url:'./Ajaxification/getRandomUser?top='+ $(sender).css('top') +'&lef='+ $(sender).css('left'),
                        success:function(data){
                            $('#detail_thumbnails').html(data);
                        }
             });
link|improve this answer
feedback

I've used the following with jQuery UI Dialog. (Maybe it works with other ajax callbacks?)

$('<div><img src="/i/loading.gif" id="loading" /></div>').load('/ajax.html').dialog({
    height: 300,
    width: 600,
    title: 'Wait for it...'
});

The contains an animated loading gif until its content is replaced when the ajax call completes.

link|improve this answer
feedback

protected by Community Mar 4 at 13:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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