/
home2
/
dakshskx
/
dakshaseo.com
/
admin
/
assets
/
plugins
/
jquery-bootpag
/
/home2/dakshskx/dakshaseo.com/admin/assets/plugins/jquery-bootpag
mkdir
upload
Name
Size
Mode
Actions
jquery.bootpag.js
4668
0644
edit
dl
rm
jquery.bootpag.min.js
2172
0644
edit
dl
rm
LICENSE.txt
1063
0644
edit
dl
rm
README.md
960
0644
edit
dl
rm
Edit:
/home2/dakshskx/dakshaseo.com/admin/assets/plugins/jquery-bootpag/README.md
(960B)
bootpag - dynamic pagination ============================ This jQuery plugin helps you create dynamic pagination with [Bootstrap](http://getbootstrap.com/) or in any other html pages. #Example Snippet 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 pages page: 1, // default page maxVisible: 5, // visible pagination leaps: 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}); }); ``` #License Plugin available under MIT license (see LICENSE.txt)
Save
cmd:
run