##Bootstrap-Paginate
####How to use
Basically, the only thing that is required is the placement of the <div class="pagination" />
and the addition of the following code your page:
$(document).ready(function(){
$('.table').paginate();
});
####Options This plugin has several options to fit the way your application works. To make it more flexible within your application, you must set the options this way:
$('table').paginate(options);
In this case, options is an array. You can set the following parameters:
Name | type | default | description |
pageSize | number | 10 | This sets the number of items that will appeared per page. |
navButtons | boolean | true | Hide/Show the navigation buttons that allow you to switch to the previous or next page. |
paginationSelector | string | .pagination | Create the pagination from the element with the paginationSelector. |