Сообщение от kupidon
|
beforeSend:function(){
$("#imagel oadstatus").show();
$("#imagel oadbutton").hide();
},
success: function(response){
$("#imagel oadstatus").hide();
$("#imagel oadbutton").show();
//alert(response);
show_pictu re(response);
},
error: function(){
$("#imagel oadstatus").hide();
$("#imagel oadbutton").show();
}
|
Это можно заменить на (вне ajax):
$(document).on({
ajaxStart: /*действия при старте запроса*/,
ajaxStop: /*действия по окончании запроса*/
});
Это будет срабатывать для всех асинхронных запросов!