Scroll to element: using jQuery, ES6
function scrollToElement( element, offset=0, preAnimate=() => {},postAnimate = () => {}) {
preAnimate();
$("html, body").animate({
scrollTop: $(element).offset().top + offset
}, 250, postAnimate);
}