jounger / pagination-jquery-plugin

New and Simple Pagination Jquery Plugin for You.
5 stars 1 forks source link

pagination-jquery-plugin

New and Simple Pagination Jquery Plugin for You.

How to use?

``` $('#page').Pagination({ // id to initial draw and use pagination size: 87, // total size of list input (required) pageShow: 5, // 5 page-item per page | min is 3 (required) page: 1, // current page (default) limit: 10, // current limit record show on table per page (default) boundary: false, // to show first and last label (optional) }, function(obj){ // callback function, you can use it to re-draw table or something $('#info').html('Current page: ' + obj.page); }); ```

Enjoy <3