How can I manually scroll down to a desired location within the page?
Created May 7, 2012
Nils Kulk There's method in window, scrollTo(x, y).
To scroll to a certain location automatically, you could use it like this:
... <BODY ONLOAD="self.scrollTo(x, y)"> ...