nhat-x
8/10/2017 - 9:20 AM

jQuery animate scroll to an element

jQuery animate scroll to an element

function scrollToElement($el) {
    $('html, body').stop(true).animate({scrollTop: $el.offset().top}, 800);
}