HTML DOM Window scrollMaxY Property

The Window scrollMaxY property returns the maximum number of pixels that the document can be scrolled vertically in the current window. It is a read-only property.
Syntax:
var scrMaxY = window.scrollMaxY
Return Value: This property returns the maximum number of pixels that the document can be scrolled vertically.
Example: This example shows how to get the maximum number of pixels vertically to the document using this property.
Here, we have attached a long vertical heading to exceed the frame to enable scroll vertically.
HTML
<!DOCTYPE HTML> <html> <body style="text-align:center;"> <h1 style="color:green;"> G<br> e<br> e<br> k<br> s<br> f<br> o<br> r<br> G<br> e<br> e<br> k<br> s<br> </h1> <p> HTML | window scrollMaxY property </p> <button onclick="Geeks()"> Click Here </button> <p id="a"></p> <script> var a = document.getElementById("a"); function Geeks() { a.innerHTML = "scrollMaxY is : " + window.scrollMaxY; } </script> </body> </html> |
Output:
-
Before Clicking the Button:
-
After Clicking the Button:
Supported Browsers:
- Firefox
- Opera
- Internet Explorer
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!




