window.scrollTo()
Scrolls to a particular set of coordinates in the document.
Syntax
window.scrollTo(x-coord, y-coord)Parameters
x-coord is the pixel along the horizontal axis of the document that you want displayed in the upper left.
y-coord is the pixel along the vertical axis of the document that you want displayed in the upper left.
Example
Notes
This function is effectively the same as window.scroll(). For relative scrolling, window.scrollBy(), window.scrollByLines(), and window.scrollByPages().
Specification
DOM Level 0. Not part of specification.
Netscape Communications http://developer.netscape.com |