Window.scrollTo()

Summary

Scrolls to a particular set of coordinates in the document.

Syntax

JavaScript
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

JavaScript
window.scrollTo( 0, 1000 );

Notes

This function is effectively the same as window.scroll. For relative scrolling, see window.scrollBy, window.scrollByLines, and window.scrollByPages.

For scrolling elements, see Element.scrollTop and Element.scrollLeft.

Specifications

Specification Status Comment
CSS Object Model (CSSOM) View Module
The definition of 'window.scroll()' in that specification.
Working Draft Initial definition.

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/window/scrollto

API CSSOM View Method NeedsCompatTable NeedsMarkupWork Reference Référence