"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Detect When a User Scrolls to the Bottom of a Div in jQuery?

How to Detect When a User Scrolls to the Bottom of a Div in jQuery?

Published on 2024-11-08
Browse:221

How to Detect When a User Scrolls to the Bottom of a Div in jQuery?

How to Detect When User Scrolls to Bottom of Div with jQuery

You've created a div element with dynamic content that features an "auto" overflow setting. To enhance the user experience, you want to load additional content when the user scrolls to the bottom of this div box. However, you're unsure how to detect that specific event.

The key to this detection lies in utilizing specific jQuery properties and methods:

  • $().scrollTop(): Indicates the number of pixels the element has been scrolled
  • $().innerHeight(): Represents the inner height of the element
  • DOMElement.scrollHeight: Returns the height of the element's content

To determine when the user has reached the bottom of the div, you can compare the sum of the first two properties to the third property. When these values match, the end of the div has been reached.

jQuery(function($) {
    $('#flux').on('scroll', function() {
        if($(this).scrollTop()   $(this).innerHeight() >= $(this)[0].scrollHeight) {
            alert('end reached');
        }
    })
});

This solution utilizes the on() method, which is preferred for event handling in jQuery versions 1.7 .

Additional Notes:

  • The event listener is attached to the div with the #flux ID, which represents the element you're interested in monitoring.
  • The alert() function is used for demonstration purposes. You can include your own logic for loading additional content here.
  • A live example can be found at http://jsfiddle.net/doktormolle/w7X9N/.
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3