Inverted Scroll

Hi guys!
I have a particular question: Is it possible tu invert the scrolling?

I have a fake page upside down (it’s an ADV inverted) so it should be perfect if, when you open the page, it’s like to start from the bottom of browser window (with header site), and when you scroll (normally scrolling with mouse) the page goes down showing its bottom (up=footer).

it’s more tricky to write than to see…
http://nimstudios.com/banner/overysl/Over.html (sample)

Thanks!

1 Like

Done!!! it’s so simple!!

<script type="text/javascript"> window.onload = scrollDownToTheTop; function scrollDownToTheTop() { window.scrollTo(0, document.body.scrollHeight); } </script>

3 Likes