filthyfox
12/21/2017 - 6:40 PM

Jquery smooth scroll

// Smooth scroll for .smoothScroll links

$(document).on('click', '.smoothScroll', function(event){
    var id = $(this).attr('href');
    event.preventDefault();
    $('html, body').animate({
        scrollTop: $(id).offset().top
    }, 600);
});