You can use the Quick Pagination
Example
<ul class="pagination1">
<li>1 - Item 1 de 25</li>
<li>2 - Item 2 de 25</li>
<li>3 - Item 3 de 25</li>
<li>4 - Item 4 de 25</li>
<li>5 - Item 5 de 25</li>
<li>6 - Item 6 de 25</li>
....
Creating three example pagination
<script type="text/javascript">
$(document).ready(function() {
$("ul.pagination1").quickPagination();
$("ul.pagination2").quickPagination({pagerLocation:"both"});
$("ul.pagination3").quickPagination({pagerLocation:"both",pageSize:"3"});
});
</script>
First example
Default option showing 10 list items and navigation at the bottom.
$("ul.pagination1 ). quickPagination();
Second example
Showing 10 list items and browsing at the top and bottom.
$("ul.pagination2 ). quickPagination({pagerLocation:"Both"});
Third Example
Specified 3 items in the list and navigation at the top and bottom.
$("ul.pagination3 ). quickPagination({pagerLocation:"Both",pageSize:"3});
You’re looking for these images dynamically through the bank?
– Rodrigo Mello
Exactly, I have a function that does that.
– Felipe Viero Goulart