How to find out the width and height of the browser window? How to get the full width and height of the document, including the scrolled out part? How to scroll the page using JavaScript?
From the DOM point of view, the root document element is document.documentElement
. That element corresponds to <html>
and has geometry properties described in the previous chapter. For some cases we can use it, but there are additional methods and peculiarities important enough to consider.
Width/height of the window
Properties clientWidth/clientHeight
of document.documentElement
is exactly what we want here:
For instance, this button shows the height of your window:
window.innerWidth/Height
Browsers also support properties window.innerWidth/innerHeight
. They look like what we want. So why not to use them instead?
If there exists a scrollbar, and it occupies some space, clientWidth/clientHeight
provide the width/height without it (subtract it). In other words, they return width/height of the visible part of the document, available for the content.
…And window.innerWidth/innerHeight
ignore the scrollbar.
If there’s a scrollbar, and it occupies some space, then these two lines show different values:
alert( window.innerWidth ); // full window width
alert( document.documentElement.clientWidth ); // window width minus the scrollbar
In most cases we need the available window width: to draw or position something. That is: inside scrollbars if there are any. So we should use documentElement.clientHeight/Width
.
DOCTYPE
is importantPlease note: top-level geometry properties may work a little bit differently when there’s no <!DOCTYPE HTML>
in HTML. Odd things are possible.
In modern HTML we should always write DOCTYPE
. Generally that’s not a JavaScript question, but here it affects JavaScript as well.
Width/height of the document
Theoretically, as the root document element is documentElement.clientWidth/Height
, and it encloses all the content, we could measure its full size as documentElement.scrollWidth/scrollHeight
.
These properties work well for regular elements. But for the whole page these properties do not work as intended. In Chrome/Safari/Opera if there’s no scroll, then documentElement.scrollHeight
may be even less than documentElement.clientHeight
! Sounds like a nonsense, weird, right?
To reliably obtain the full document height, we should take the maximum of these properties:
let scrollHeight = Math.max(
document.body.scrollHeight, document.documentElement.scrollHeight,
document.body.offsetHeight, document.documentElement.offsetHeight,
document.body.clientHeight, document.documentElement.clientHeight
);
alert('Full document height, with scrolled out part: ' + scrollHeight);
Why so? Better don’t ask. These inconsistencies come from ancient times, not a “smart” logic.
Get the current scroll
DOM elements have their current scroll state in elem.scrollLeft/scrollTop
.
For document scroll document.documentElement.scrollLeft/Top
works in most browsers, except oldler WebKit-based ones, like Safari (bug 5991), where we should use document.body
instead of document.documentElement
there.
Luckily, we don’t have to remember these peculiarities at all, because the scroll is available in the special properties window.pageXOffset/pageYOffset
:
alert('Current scroll from the top: ' + window.pageYOffset);
alert('Current scroll from the left: ' + window.pageXOffset);
These properties are read-only.
Scrolling: scrollTo, scrollBy, scrollIntoView
To scroll the page from JavaScript, its DOM must be fully built.
For instance, if we try to scroll the page from the script in <head>
, it won’t work.
Regular elements can be scrolled by changing scrollTop/scrollLeft
.
We can do the same for the page, but as explained above:
- For most browsers (except older Webkit-based)
document.documentElement.scrollTop/Left
is the right property. - Otherwise,
document.body.scrollTop/Left
.
These cross-browser incompatibilities are not good. Fortunately, there’s a simpler, universal solution: special methods window.scrollBy(x,y) and window.scrollTo(pageX,pageY).
-
The method
scrollBy(x,y)
scrolls the page relative to its current position. For instance,scrollBy(0,10)
scrolls the page10px
down.The button below demonstrates this:
-
The method
scrollTo(pageX,pageY)
scrolls the page to absolute coordinates, so that the top-left corner of the visible part has coordinates(pageX, pageY)
relative to the document’s top-left corner. It’s like settingscrollLeft/scrollTop
.To scroll to the very beginning, we can use
scrollTo(0,0)
.
These methods work for all browsers the same way.
scrollIntoView
For completeness, let’s cover one more method: elem.scrollIntoView(top).
The call to elem.scrollIntoView(top)
scrolls the page to make elem
visible. It has one argument:
- if
top=true
(that’s the default), then the page will be scrolled to makeelem
appear on the top of the window. The upper edge of the element is aligned with the window top. - if
top=false
, then the page scrolls to makeelem
appear at the bottom. The bottom edge of the element is aligned with the window bottom.
The button below scrolls the page to make itself show at the window top:
And this button scrolls the page to show it at the bottom:
Forbid the scrolling
Sometimes we need to make the document “unscrollable”. For instance, when we need to cover it with a large message requiring immediate attention, and we want the visitor to interact with that message, not with the document.
To make the document unscrollable, it’s enough to set document.body.style.overflow = "hidden"
. The page will freeze on its current scroll.
Try it:
The first button freezes the scroll, the second one resumes it.
We can use the same technique to “freeze” the scroll for other elements, not just for document.body
.
The drawback of the method is that the scrollbar disappears. If it occupied some space, then that space is now free, and the content “jumps” to fill it.
That looks a bit odd, but can be worked around if we compare clientWidth
before and after the freeze, and if it increased (the scrollbar disappeared) then add padding
to document.body
in place of the scrollbar, to keep the content width the same.
Summary
Geometry:
-
Width/height of the visible part of the document (content area width/height):
document.documentElement.clientWidth/Height
-
Width/height of the whole document, with the scrolled out part:
let scrollHeight = Math.max( document.body.scrollHeight, document.documentElement.scrollHeight, document.body.offsetHeight, document.documentElement.offsetHeight, document.body.clientHeight, document.documentElement.clientHeight );
Scrolling:
-
Read the current scroll:
window.pageYOffset/pageXOffset
. -
Change the current scroll:
window.scrollTo(pageX,pageY)
– absolute coordinates,window.scrollBy(x,y)
– scroll relative the current place,elem.scrollIntoView(top)
– scroll to makeelem
visible (align with the top/bottom of the window).