🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

blade-pagination is a small and cross-browser jQuery pagination plugin used to create Bootstrap-style pagination links for your long web content.

Pagination

Documentation

blade-pagination

Pagination, a jQuery plugin.
Demo is in package.

Demo Snapshot

github

Dependency

  • jQuery

How to Use

Import CSS

<link rel="stylesheet" type="text/css" href="blade-pagination.css" >

Import JS

<script src="jquery.min.js"></script> <script src="jquery.blade-pagination.js"></script>

Initial pagination

<script type="text/javascript">   $(function() { 	$('selector').bladePagination(); 	// or $('selector').bladePagination(options);   }); </script>

Option Description

{     maxPageNum: 5,     firstLabel: '|&lt;', // |<     prevLabel: '&lt;',   // <     nextLabel: '&gt;',   // >     lastLabel: '&gt;|',  // >|     moreLabel: '...',     rebuildAfterClick: false,     clickPage: function(page) {} }

You May Also Like