Thursday, February 5, 2026
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

2 COMMENTS

Most Popular

Dominic
32487 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6861 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12071 POSTS0 COMMENTS
Shaida Kate Naidoo
6994 POSTS0 COMMENTS
Ted Musemwa
7233 POSTS0 COMMENTS
Thapelo Manthata
6944 POSTS0 COMMENTS
Umr Jansen
6926 POSTS0 COMMENTS