Skip to content
Related Articles
Open in App
Not now

Related Articles

HTML DOM Window scrollMaxY Property

Improve Article
Save Article
  • Last Updated : 31 Jul, 2020
Improve Article
Save Article

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

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!