window.scroll()

JavaScript1.1, JScript3.0 Nav3, IE3, Opera3 Syntax

							window.scroll(numX, numY)

Description

The scroll() method of the Window object scrolls the specified window to the specified location passed to the method. As shown in the syntax definition, the first numeric value passed to the method represents the x-coordinate to which you want to scroll the window, while the second numeric value represents the y-coordinate. Note that this method has been deprecated in JavaScript 1.2 and replaced with the scrollBy() and scrollTo() methods.

Example

Listing 7.578 has two text fields and a button. If the user enters an integer value in each of the text fields and clicks the button, the window will be scrolled to those settings.

Listing ...

Get Pure JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.