You should probably use the intersection observer now but here's a 
particularly stupid way to do it (also because it fires for every scroll).

var scroll_threshold = 500; // make sure you leave enough for any elements 
after the one where you are loading elements such as a footer

document.onscroll= function(){
    let scrollerBottom, listBottom;
    scrollerBottom = $(window).scrollTop() + $(window).height()
    listBottom = $(document).height();
    if ( listBottom - scrollerBottom < scroll_threshold ) {
        // Then you request the next page of results using ajax e.g. see 
jquery $.get or $.web2py.page
        
    }
};


-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to