# everscroll **Repository Path**: mirrors_svenanders/everscroll ## Basic Information - **Project Name**: everscroll - **Description**: Really simple infinite scroll - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Everscroll ---------- Really simple infinite scroll library Thanks to: https://github.com/alexblack/infinite-scroll - No dependencies - Tested in Chrome 17, IE7, Firefox 11, Android 2.3 Browser, iPad 2 with IOS5 - Handles touch events to respond before the end of the user's scroll on devices like the iPad ## Usage ``` js // setup var infiniteScroll = require('everscroll')({ distance: 50 }); // initiate infiniteScroll(function(done) { // 1. fetch data from the server // 2. insert it into the document // 3. call done when we are done done(); }); ```