Smooth scroll

Bootstrap smooth scroll

by Vitaliy T

JavaScript

/*smooth scroll */
$(".smoothSlide").on('click', function(e) {
   e.preventDefault();
   var hash = this.hash;
   $('html, body').animate({
       scrollTop: $(this.hash).offset().top}, 300, function(){
       window.location.hash = hash;
     });
});