Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter SH@M

    (@ithishamul-haq)

    Hi,
    Thank you Tim!
    Thank you very much Chris for your quick feedback.

    Thanks

    Thread Starter SH@M

    (@ithishamul-haq)

    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

    Thread Starter SH@M

    (@ithishamul-haq)

    Hi Kishor,

    Thank you!. Now i updated the plugin. Superb.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)