javascript slide to element code example
Example 1: scroll to element jquery
$('html, body').animate({
scrollTop: $("#grepperRocks").offset().top
});
Example 2: javascript scroll to element
document.getElementById("divId").scrollIntoView();
$('html, body').animate({
scrollTop: $("#grepperRocks").offset().top
});
document.getElementById("divId").scrollIntoView();