jscroll
jscroll copied to clipboard
An infinite scrolling plugin for jQuery.
Hi, can i use this plugin to paginate preloaded ul li list without ajax only html? Thanks!
``` $('.scroll').jscroll();({ nextSelector: 'a:last', contentSelector: '.main', debug: true, ``` doesn't load just the main class when code is ``` content ```
Hi, is there a simple way to change the status of the autoTrigger during the runtime? I have an "infinite" list of content and on site number one it shows...
[https://www.newscientist.com/issues/](url) ``` $(document).ready(function() { $('div.article-content > section > select').parent().append(' '); $('div.article-content > section > select option').each(function(){ $('#new-archive-dropdown').append(' '+$(this).text() + ''); }); $('div.article-content > section > select').remove(); $('div.article-content > section >...
I think my code is right but i can't get it work don't know why. Here's d code. ``` javascript $( document ).ready(function() { $('.jscroll').jscroll({ autoTrigger: true }); }); ```...
Documentation for 'nextSelector' could do to specify that the selector must be relative to the selector jscroll() is called on.
Added 2 New callback function 'beforeSend' and 'afterContentLoad' and new option reTriggerUntil option added two public function 'getdata' and 'getOptions' , and load request is changed to ajax get method...
It should have a callback for when .load() (inside _load()) returns an error. Otherwise the loading image just sits there....forever. At the moment I'm doing this (I should probably do...
I need jscroll for messaging window. Think facebook messages, when older messages are higher than newer, so you should scroll to the top to load a portion of messages history....
jscroll fails for work with hidden divs (some switching tabs with scroll in ui). this patch should fix it. P.S. $(object).jscroll.destroy() doesn't work as expected (it destroys other istance), so...