jquery-endless-scroll
jquery-endless-scroll copied to clipboard
Endless/infinite scrolling/pagination.
``` coffeescript do ($ = jQuery) -> $.fn.endlessScroll = (options) -> new EndlessScroll(this, options).run() ``` ... is more much better than: ``` coffeescript (($) -> $.fn.endlessScroll = (options) -> new...
Would it be possible to add the default settings for the configuration options to the initial ReadMe file?
Once ceasefire has returned true the endless scroll stop, is there any way to enable that again after ceasefire is triggered I mean is there anyway to set firing variable...
what is the correct way to add endless-scroll in table body element. i try it using callback but facing many issue. like calling event when scroll up $("#indi_screener_detail_rows").unbind('scroll'); $('#bodyElementID').endlessScroll({ fireOnce:...
I want to remove endless scroll plugin at a certain point. how can i ?
I have came up with an idea of parameterization of the scrolling functionality. 1. add _scrollMode_ to options. It should be set to one of the following: - "next" --...
consider the flowing example with endless-scroll version 1.8.0 <div id="mylist" class="row"> <div style="height:150px;float:left;"> <div>0</div> </div> </div> <script > $("#mylist").endlessScroll({ fireOnce: false, fireDelay: 10, insertAfter:'div.endless_scroll_content:last', content: function(i,p,d){ console.log(i,p,d); return '<div>'+p+'</div>' }...
If i use callback instead of content and i want to dynamically set `ceaseFire: true` otherwise it will keep showing loader on each scroll event.
The page is only triggering for once and i tried putting fireOnce: false; stil nothing!
I've looked at the source to understand the API better, but it looks like, since it expects a string to be returned from the callback synchronously that it isn't possible...