i'm using this:
<head>
<meta http-equiv="refresh" content="5; URL=<?php $_SERVER['PHP_SELF'] ?>">
</head>
for reloading the page every 5 seconds.
i'm using this:
<script type="text/javascript">
window.scrollTo(0, document.body.scrollHeight);
</script>
for scrolling down if necessary.
It works fine with Firefox and Internet Explorer but Chrome scrolls only once when loading the page for the first time. Only when I switch the tab (e.g. Ctrl+t) and go back after 5 seconds (Ctrl+w) Chrome scrolls down to the bottom. This is strange! Do I use window.scroll incorrectly or does Chrome behave incorrectly?
Are there any other possibilities for scrolling to the bottom?