Some features of this site require JavaScript.
// make sure and go down to the second page if (window.scrollY) window.scroll(0,0); window.scrollByPages(1);
Use this property to check that the document hasn't already been scrolled some if you are using relative scroll functions such as window.scrollBy, window.scrollByLines, or window.scrollByPages.
The pageYOffset property is an alias for the scrollY property:
window.pageYOffset == window.scrollY; // always true
Page last modified 06:46, 30 Dec 2007 by Waldo