Summary
Returns the maximum number of pixels that the document can be scrolled horizontally.
Syntax
xpix = window.scrollMaxX
xpixis the number of pixels.
Example
// Scroll to most right of the page var maxX = window.scrollMaxX; window.scrollTo(maxX, 0);
Notes
Do not use this property to get the total document width, which is not equivalent to window.innerWidth + window.scrollMaxX, because window.innerWidth includes the width of any visible vertical scrollbar, thus the result would exceed the total document width by the width of any visible vertical scrollbar. Instead use document.body.scrollWidth. See also window.scrollMaxY.
Specification
HTML5
Document Tags and Contributors
Tags:
Contributors to this page: Sheppy, ethertank, teoli, 20after4, shelbymoore3, Mgjbot, iamanupmenon, Potappo, Mw22
Last updated by:
teoli,