Scrolling doux vers une ancre

Un petit bout de jQuery intéressant pour animer le scrolling vers une ancre (ce que les anglophones appellent smooth scroll) :

$('a[href*=#]').on('click', function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 700); });