Scrolls to a particular set of coordinates in the document.
window.scrollTo(x-coord, y-coord) window.scrollTo(options)
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.- or -
options
is a ScrollToOptions
dictionary.window.scrollTo(0, 1000);
Using options
:
window.scrollTo({ top: 100, left: 100, behavior: 'smooth' });
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.
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module The definition of 'window.scroll()' in that specification. | Working Draft | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes |
ScrollToOptions parameter |
45 | No | Yes | No | 32 | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | ? | Yes | Yes |
ScrollToOptions parameter |
45 | 45 | No | Yes | 32 | No | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/window/scrollTo