Open In App

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.




<!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:

Supported Browsers: 


Article Tags :