$(document).ready(function() {
    $("#test-list").sortable({
      handle : '.handle',
      update : function () {
    	  var order = $('#test-list').sortable('serialize');
    	$("#info").load("process-sortable.php?"+order);
      },
    });
});

I want a loading indicator (GIF animation if possible) to show up when I drop the item and the request is being sent to the server until the PHP request is done and load is succesful.

How can I do this ?

Thanks.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Show the image in the update function before you start the ajax-call, make a callbackfunction for the load and hide the image there (so after the ajax-call is done)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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