====== Make a smooth scroll ====== [[http://www.design-fluide.com/17-11-2013/un-defilement-anime-smooth-scroll-en-jquery-sans-plugin/|Source]] $('.scrollTo').click( function() { // Au clic sur un élément var page = $(this).attr('href'); // Page cible var speed = 750; // Durée de l'animation (en ms) $('html, body').animate( { scrollTop: $(page).offset().top }, speed ); // Go return false; });