Sunday, November 16, 2025
HomeLanguagesJavascriptHTML DOM Window scrollMaxY Property

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, neveropen 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!
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32402 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6768 POSTS0 COMMENTS
Nicole Veronica
11919 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11990 POSTS0 COMMENTS
Shaida Kate Naidoo
6897 POSTS0 COMMENTS
Ted Musemwa
7149 POSTS0 COMMENTS
Thapelo Manthata
6850 POSTS0 COMMENTS
Umr Jansen
6841 POSTS0 COMMENTS