A pagination library that works everywhere
- Simple and lightweight implementation
- No vendor lock-in. Pagination.js can be used with any JavaScript frameworks (React, Angular, Preact or VanillaJS)
- Written in TypeScript
- Supports all modern browsers
new Paginator({
data: [
['Mike', 33, '[email protected]'],
['John', 82, '[email protected]'],
['Sara', 26, '[email protected]']
],
columns: ['Name', 'Age', 'Email']
}).render(document.getElementById('wrapper'));
Piece of 🍰
Full documentation of Paginator.js installation, config, API and examples are available on Paginator.js website Paginator.js.