Do any of you know why scrollTo
and scrollBy
methods in Chrome are not working. In other browsers eg Firefox it works. I can fix the issue by adding a setTimeout
. An eventListener like load or DOMContentloaded is not working. Thanks and VG.
<script>
scrollTo(0,200); // does not work
setTimeout(function a() {scrollTo(0,200);},1); //works.
</script>