Open In App

How to write a program that will return true if the bottom of the page is visible in JavaScript ?

Last Updated : 21 Dec, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The task is to return true if the bottom of the page is visible. We can achieve this by simply using the height of the window and the height of the scrolled window.

Approach:

  • Here we will first create a function that will be called whenever you use the scroll.
  • Now we will check whether the bottom is visible each time when the function is called using the window height and the scrolled window height.
  • And we stored the result inside the flag variable and printed it onto the console.

Example:

HTML




<h1 style="margin-bottom: 1000px; color:green">DSA</h1>
<script>
    window.onload = function() {
        window.onscroll = function() {
      
            let flag =
            document.documentElement.clientHeight + window.scrollY >=
                (document.documentElement.scrollHeight ||
                document.documentElement.clientHeight);
      
            console.log(flag);
            console.log("GFG scrolled ");
      
        };
    };
</script>


Output:

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads