Document.scrollingElement
The scrollingElement
read-only property of the Document
interface returns a reference to the Element
that scrolls the document. In standards mode, this is the root element of the document, document.documentElement
.
When in quirks mode, the scrollingElement
attribute returns the HTML body
element if it exists and is potentially scrollable, otherwise it returns null.
Syntax
var element = document.scrollingElement;
Example
var scrollElm = document.scrollingElement; scrollElm.scrollTop = 0;
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
scrollingElement |
44 |
12 |
48 |
No |
31 |
9 |
44 |
44 |
48 |
32 |
9 |
4.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Document/scrollingElement