DenisKarakchiev
9/3/2017 - 10:09 AM

jQuery anchor smooth scroll #js #jquery

jQuery anchor smooth scroll #js #jquery

$('a[href*=\\#]').click(function(){
    $('html, body').animate({
        scrollTop: $( $(this).attr('href') ).offset().top - 1
    }, 500);
    return false;
});