trixter52
11/30/2017 - 8:13 AM

smoth scroll to section

smoth scroll to section on click menu link

$("nav a").on('click', function(e) {
    e.preventDefault();
    var pos = $($(this).attr('href'));
    $('html, body').animate({
        scrollTop: pos.offset().top
    }, 1000);
});