scroll javascript 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
Example 3: window.scroll
scroll function
window.scroll({
top: 0,
left: 0,
behavior: 'smooth'
});
window.scroll(x-coord, y-coord)
window.scroll(options)
Example 4: scroll js
window.scroll(x-coord, y-coord)
window.scroll(options)