nick032,
вариант...
$(function() {
$('#favorites-del-all').click(function(e){
//e.preventDefault();
//if( !confirm("Подтвердите удаление") ) return;
var $this = $(this),
parent = $this.parent(),
loader = $this.next(),
list = parent.prev().hide();
$.ajax({
type: 'POST',
url: ajaxurl,
data: {
security: Favorites.nonce,
action: 'favorites_dell_all',
},
beforeSend: function(){
$this.fadeOut(300);
loader.fadeIn(300);
},
success: function(res){
loader.stop().fadeOut(300, function(){
list.html(res).show();
});
},
error: function(){
alert('Ошибка');
}
});
});
});