SVITY
7/27/2016 - 10:44 AM

Scroll to element: using jQuery, ES6

Scroll to element: using jQuery, ES6

function scrollToElement( element, offset=0, preAnimate=() => {},postAnimate = () => {}) {

    preAnimate();

    $("html, body").animate({
        scrollTop: $(element).offset().top + offset
    }, 250, postAnimate);
}