On my website is it possible so that when it loads, the page is automatically scrolled down to the bottom of the page? Thank you.
Erik
have you tryed - window.scrollTo(val,val); entering the scroll offset in place of the val..
thanks, i havent tried that yet but i will. heres how i would use it:
<head> <script type="text/javascript"> onload="window.scrollTo(val,val);" </script> </head>
i hope it works! thanks.
try replacing the val with
document.body.offsetHeight or something like that.