Hi,
I got solution.
Open your “quickpager.jquery.js” located in the folder js/quickpager.jquery.js
Use the below New Code after the end of the function. Which is labeled in the beginning “//pager navigation behaviour”. Starting from line no. 103 and end in 144. After finishing this function. Use the below code.
Paste the below code.
New Code:
————–
//add prev, next in pagination.
var nextLink = <li><a href='#'>Next</a></li>
;
var prevLink = <li><a href='#'>Prev</a></li>
;
$(“.simplePagerNav”).prepend(prevLink).append(nextLink);
$(“#nextLink”).click(function(e) {
e.preventDefault();
$(“li.currentPage”).next(“li[class^=simplePageNav]”).find(“a”).click();});
$(“#prevLink”).click(function(e) {
e.preventDefault(); $(“li.currentPage”).prev(“li[class^=simplePageNav]”).find(“a”).click();
});
Note: Please add single or double quotation at the beginning and end of li tags assigned in the variable nextLink and prevLink.
Thanks