Title: Feature Request &#8211; Infinity Scroll
Last modified: December 21, 2018

---

# Feature Request – Infinity Scroll

 *  Plugin Contributor [sburdett](https://wordpress.org/support/users/sburdett/)
 * (@sburdett)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/feature-request-infinity-scroll/)
 * I played with this some but didn’t have much luck. I think it would be a great
   feature though. This is what I tried:
 *     ```
       jQuery(document).on('scroll', function() {
   
       	var distanceFromBottom = Math.floor(jQuery(document).height() - jQuery(document).scrollTop() - jQuery(window).height());
       	var canbeloaded = false;
   
       	if (jQuery('.load_more').is(':visible')) {
       		canbeloaded = true;
       	}
   
           if(distanceFromBottom < 200 && canbeloaded == true) {
               // Prevent Load More from triggeirng early
               jQuery('#acs_search_results_container .load_more').trigger( 'click' );
           }
       });
       ```
   
 * But I kept getting duplicate results. Thanks!!
    -  This topic was modified 7 years, 5 months ago by [sburdett](https://wordpress.org/support/users/sburdett/).
    -  This topic was modified 7 years, 5 months ago by [sburdett](https://wordpress.org/support/users/sburdett/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [Andrea Landonio](https://wordpress.org/support/users/lando1982/)
 * (@lando1982)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/feature-request-infinity-scroll/#post-11059536)
 * Nice suggestion!
    I’ll add it in a new plugin release.. 😉

Viewing 1 replies (of 1 total)

The topic ‘Feature Request – Infinity Scroll’ is closed to new replies.

 * ![](https://ps.w.org/cloud-search/assets/icon-256x256.png?rev=1350439)
 * [CloudSearch](https://wordpress.org/plugins/cloud-search/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/cloud-search/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/cloud-search/)
 * [Active Topics](https://wordpress.org/support/plugin/cloud-search/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/cloud-search/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/cloud-search/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Andrea Landonio](https://wordpress.org/support/users/lando1982/)
 * Last activity: [7 years, 4 months ago](https://wordpress.org/support/topic/feature-request-infinity-scroll/#post-11059536)
 * Status: not resolved