Blame | Last modification | View Log | Download | RSS feed
bootpag - dynamic pagination============================This jQuery plugin helps you create dynamic pagination with [Bootstrap](http://getbootstrap.com/) or in any other html pages.#ExampleSnippet that dynamic loads number of pages.More examples can be found on [project homepage](http://botmonster.com/jquery-bootpag/)```html<p id="content">Dynamic page content</p><p id="pagination-here"></p>``````javascript$('#pagination-here').bootpag({total: 7, // total pagespage: 1, // default pagemaxVisible: 5, // visible paginationleaps: true // next/prev leaps through maxVisible}).on("page", function(event, num){$("#content").html("Page " + num); // or some ajax content loading...// ... after content load -> change total to 10$(this).bootpag({total: 10, maxVisible: 10});});```#LicensePlugin available under MIT license (see LICENSE.txt)