scroll to a div code example
Example 1: smooth scroll jquery onclick
$("#button").click(function() {
$('html, body').animate({
scrollTop: $("#myDiv").offset().top
}, 2000);
});
Example 2: scroll to element in scrollable div
function scrollInDiv($scrollableDiv, $scrollTo, animate = true) {
var scrollTo =
$scrollTo.offset().top +
$scrollableDiv.scrollTop() -
$scrollableDiv.offset().top;
if (animate)
$scrollableDiv.animate({
scrollTop: scrollTo,
});
else $scrollableDiv.scrollTop(scrollTo);
}