Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pelletier/jquery.slidingpagination
A jQuery plugin for slide-based pagination.
https://github.com/pelletier/jquery.slidingpagination
Last synced: 25 days ago
JSON representation
A jQuery plugin for slide-based pagination.
- Host: GitHub
- URL: https://github.com/pelletier/jquery.slidingpagination
- Owner: pelletier
- Created: 2011-05-04T15:18:59.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-05-04T16:32:45.000Z (over 13 years ago)
- Last Synced: 2024-05-08T17:39:44.392Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jQuery.SlidingPagination
A simple slide-based pagination plugin for jQuery.
## Live on jsfiddle
[See it live](http://jsfiddle.net/pelletier/gNBVv/1/)
## Requirements
- jQuery (tested on 1.5.2)
- [Mustache.js](https://github.com/janl/mustache.js/)## Example
Pagination$(document).ready(function() {
var current = 6;
var max = 96;$("#paging").slidingPagination({
'current': current,
'max': max,
});
});