Categories
javascript

Javascript to automatically scroll down to the bottom of a web page

<script type="application/javascript">
window.scrollTo(0,document.body.scrollHeight);
</script>

Leave a Reply