Published
- 1 min read
javascript auto scroll down slowly
The solution for this is noted below
javascript auto scroll down slowly
Solution
function pageScroll() {
window.scrollBy(0, 1)
scrolldelay = setTimeout(pageScroll, 10)
}
Try other methods by searching on the site. That is if this doesn’t work