javascript - Smooth scrolling when clicking an anchor link - Stack Overflow

PHOTO EMBED

Thu May 28 2020 15:25:13 GMT+0000 (Coordinated Universal Time)

Saved by @dyaneld

$(document).on('click', 'a[href^="#"]', function (event) {
    event.preventDefault();

    $('html, body').animate({
        scrollTop: $($.attr(this, 'href')).offset().top
    }, 500);
});
content_copyCOPY

https://stackoverflow.com/questions/7717527/smooth-scrolling-when-clicking-an-anchor-link