Skip to content

Allmedialab/jquery-bootpag

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bootpag - dynamic pagination jQuery plugin

This jQuery plugin helps you create dynamic pagination with twitter bootstrap or in any other html pages.

#Example

Snippet that dynamic loads number of pages. More examples can be found on project homepage

<p id="content">Dynamic page content</p>
<p id="pagination-here"></p>
$('#pagination-here').bootpag({
    total: 38,          // total pages
    page: 1,            // default page
    maxVisible: 10,     // visible pagination
    leaps: true         // next/prev leaps through maxVisible
}).on("page", function(event, num){
    $("#content").html("Page " + num); // or some ajax content loading...
}); 

#License

Plugin available under MIT license (see LICENSE.txt)

About

BootPag - boostrap dynamic pagination jQuery plugin

Resources

License

Stars

Watchers

Forks

Packages

No packages published