getfluid
3/9/2018 - 7:22 PM

Smooth scroll bookmark links

Smooth scroll bookmark links

// Smooth scroll bookmark links with class "ss"
$('.ss').click(function() {
  if (location.pathname.replace(/^\//,'') === this.pathname.replace(/^\//,'') && location.hostname === this.hostname) {
    var target = $(this.hash);
    target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
    if (target.length) {
      $('html,body').animate({scrollTop: target.offset().top}, 1000); // Set scroll speed here
      return false;
    }
  }
});