Страница прокрутки вверх после успеха Ajax

$('body').ajaxSuccess(function() {
  $('html, body').animate({ scrollTop: 0 }, 'slow');
}); 
Lovely Lemur