Use Quick jQuery Pagination to convert long lists and page content into numbered pages in seconds!
Benefits of quick pagination
- Can be used on any list in seconds
- You can specify navigation on top, bottom or both
- You can specify the number of items to display for each page
- Very lightweight, only 3kb!
- I’ve tested in on every browser and it is very stable
Disadvantages to similar pagination plugins
- It currently only works on lists (but you can use it on divs you would have to put them in li tags).
- It currently doesn’t have back and next buttons.
Example Usage 1
Default options 10 list items per page and page navigation at bottom.
$("ul.pagination1").quickPagination();
Example Usage 2
Default options 10 list items per page and page navigation at top and bottom.
$("ul.pagination2").quickPagination({pagerLocation:"both"});
Example Usage 3
Specified 3 list items per page and page navigation at top and bottom.
$("ul.pagination3").quickPagination({pagerLocation:"both",pageSize:"3"});







Thanks Bro, i really like your plugin about pagination… I want to use this in my project :D
Hi, nice work but i am not able use it… whenever i try to reference it i just keep getting object dosen’t support the property error in my IE … :(
@Cruz3N – Thanks!
@Tanmay – I’ve tested it in IE and didn’t see any errors. Can I ask what version of IE it was? Also exactly what the error msg said? Is it working ok in Firefox?
http://jquery4u.com/demos/jquery-quick-pagination/
Finally got it working, there was some reference issue. :)
A little help … can you tell me how I can use the plugin to show a previous and next button and not the page numbers? How can I implement that?
I added this plugin and it works great. But when I add search on the list, the search is not work. when I comment the quickPagination the search works properly. I enable the search on the list using data-filter attribute as follows.
Please help me in resolving this issue.
<ul class=”newsList” data-role=”listview” data-filter=”true” >
Hi Magesh,
It’s hard to understand what’s the problem. Have you got the url of the page your trying to include the pagination on? I can have a look at it for you.
Thanks
Sam
It currently only works on lists (but you can use it on divs you would have to put them in li tags).
well, I have used it on div’s and it is working fine ….
Can we substitute the pagination numbers with a simple “next”, “previous” or kind of navigation ?