Skip to content

The old infinitescroll is no longer maintained. This is just a try .. for my own purposes.

License

Notifications You must be signed in to change notification settings

CHEWX/infinitescroll

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jquery infinitescroll

A demo page is currently here

Usage

<script src="<some_path>/jquery.min.js"></script>
<script src="<some_path>/jquery.infinitescroll.js"></script>
<script>
    $('.row').infinitescroll({
        itemSelector: '.col',
        nextSelector: '.next-page',
        bufferPx: 40,
        callback: function( items ) {

            console.log( $( items ) );
            console.log( 'Page Loaded' );

        },
    });
</script>

An Ajax call takes place when the first element matching the nextSelector comes closer to the window bottom than the pixels defined in bufferPx during scrolling.

The Ajax call fetches that page which is defined in the href of the first link matching nextSelector.

The elements of the fetched page matching itemSelector are appended to the jQuery collection.

Add anonymous function to the callback option which is called after the items are added to the DOM. Can modify the new items using the $items selector.

If the next page has an element matching nextSelector as well, the whole procedure repeats.

About

The old infinitescroll is no longer maintained. This is just a try .. for my own purposes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%