jscroll icon indicating copy to clipboard operation
jscroll copied to clipboard

An infinite scrolling plugin for jQuery.

Results 87 jscroll issues
Sort by recently updated
recently updated
newest added

Adding an extra check before loading to prevent JS warnings from undefined data objects, as these were racking up with every scroll I did after there was no more data...

Added support to use autoTriggerUntil as a function instead only number of pages.

Currently, jscroll will still display the "Loading..." message if the "next" selector is not found when the plugin is initialized. This patch adds checks to ensure the next selector exists...

I'm paginating search results returned from an AJAX call: $('#search').keyup(function() { var search = $(this).val(); $.get('/search', {search : search}, function(results) { $('.scroll-table').html(results); $('.scroll-table').jscroll(); }); }); After getting the new set...

Hi. I've migrated part of my Wordpress site from ajax to jscroll. jscroll is a great piece of work and it's working extremely well with my pagination and navigation design...

i have tried to put a link or a button to load data manually but i cannot get it, i have tried [autoTrigger](https://jscroll.com/#/configuration?id=autotrigger) Type: Boolean Default: true When set to...

Hi . i am using jscroll in pjax project and for loadingHtml i use below code ` loadingHtml: ' Loading...', ` but i get **Uncaught SyntaxError: Invalid or unexpected token**...