Scrolls the window to a particular place in the document.
window.scroll(x-coord, y-coord) window.scroll(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.<!-- put the 100th vertical pixel at the top of the window --> <button onClick="scroll(0, 100);">click to scroll down 100 pixels</button>
Using options
:
window.scroll({ top: 100, left: 100, behavior: 'smooth' });
Window.scrollTo()
is effectively the same as this method. For scrolling a particular distance, use Window.scrollBy()
.
Also see Window.scrollByLines()
, Window.scrollByPages()
and Element.scrollIntoView()
.
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 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | ? | Yes | ? | 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/scroll