javascript scrooll code example
Example 1: js scrolling in div
var divElement = document.getElementById("div");
divElement.scroll({
top: divElement.scrollHeight,//scroll to the bottom of the element
behavior: 'smooth' //auto, smooth, initial, inherit
});
Example 2: javascript scroll down
window.scrollTo(300, 500); //X=300 and Y=500