<script type="text/javascript"> $(document).ready(function(){ var divLoc = $('#123').offset(); $('html, body').animate({scrollTop: divLoc.top}, "slow"); }); </script>
Add id = "123" to any <div> , it will automatically scroll down when the page loads.
Here's another script if the previous one doesn't work!
<script> window.setInterval(function() { var elem = document.getElementById('fixed'); elem.scrollTop = elem.scrollHeight; }, 3000); </script>
Add id = "fixed" to any <div> it will automatically scroll down when the page loads.
source share