Afficher le chargeur sur l'appel ajax

$.ajax({
  url        : url,
  cache      : false,
  beforeSend : function(){
    $('#loading-image').show();
  },
  success: function(html){
    $('#loading-image').hide();
    $('.info').append(html);
  },
});
Ankur