You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 3 години
12345678910111213141516171819202122232425262728293031
  1. bootpag - dynamic pagination
  2. ============================
  3. This jQuery plugin helps you create dynamic pagination with [Bootstrap](http://getbootstrap.com/) or in any other html pages.
  4. #Example
  5. Snippet that dynamic loads number of pages.
  6. More examples can be found on [project homepage](http://botmonster.com/jquery-bootpag/)
  7. ```html
  8. <p id="content">Dynamic page content</p>
  9. <p id="pagination-here"></p>
  10. ```
  11. ```javascript
  12. $('#pagination-here').bootpag({
  13. total: 7, // total pages
  14. page: 1, // default page
  15. maxVisible: 5, // visible pagination
  16. leaps: true // next/prev leaps through maxVisible
  17. }).on("page", function(event, num){
  18. $("#content").html("Page " + num); // or some ajax content loading...
  19. // ... after content load -> change total to 10
  20. $(this).bootpag({total: 10, maxVisible: 10});
  21. });
  22. ```
  23. #License
  24. Plugin available under MIT license (see LICENSE.txt)