
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
@webcreate/infinite-ajax-scroll
Advanced tools
Turn your existing pagination into infinite scrolling pages with ease
Turn your existing pagination into infinite scrolling pages with ease.
More features, documentation and examples available at: https://docs.infiniteajaxscroll.com/
Get up and running in no time by linking directly to Infinite Ajax Scroll on unpkg.
<script src="https://unpkg.com/@webcreate/infinite-ajax-scroll@^3/dist/infinite-ajax-scroll.min.js"></script>
Place this code right before the </body>
tag on each template or page that you want to use infinite scroll on.
Are you using NPM in your projects? You can install and update our package easily.
$ npm install --save @webcreate/infinite-ajax-scroll
Infinite Ajax Scroll works on a container with item elements which get appended. A next link is used to determine the next url.
<div class="container">
<div class="item">...</div>
<div class="item">...</div>
<div class="item">...</div>
...
</div>
<div class="pagination">
<a href="page1.html" class="prev">Prev</a>
<span class="current">2</span>
<a href="page3.html" class="next">Next</a>
</div>
Now you can configure Infinite Ajax Scroll:
// import if you use the NPM package
import InfiniteAjaxScroll from '@webcreate/infinite-ajax-scroll';
let ias = new InfiniteAjaxScroll('.container', {
item: '.item',
next: '.next',
prev: '.prev',
pagination: '.pagination'
});
Full documentation can be found at https://docs.infiniteajaxscroll.com
Infinite Ajax Scroll is dual licensed:
Buying a commercial license is mandatory as soon as you develop commercial activities distributing the Infinite Ajax Scroll software inside your product or deploying it on a network without disclosing the source code of your own applications under the AGPL license.
See https://infiniteajaxscroll.com/licenses/ for more details.
[3.1.0]
This version introduces upwards scroll support (fixes #466). See upwards scroll
documentation on how to use this feature.
upwards
documentationFAQs
Turn your existing pagination into infinite scrolling pages with ease
The npm package @webcreate/infinite-ajax-scroll receives a total of 234 weekly downloads. As such, @webcreate/infinite-ajax-scroll popularity was classified as not popular.
We found that @webcreate/infinite-ajax-scroll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.