Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3874676
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:10:46+00:00 2026-05-19T22:10:46+00:00

According to the definition of callback in JQuery pagination plugin’s documents. It seems that

  • 0

According to the definition of callback in JQuery pagination plugin’s documents. It seems that it only get tow parameters of its own.So, how can I pass extra parameter to the callback function.

callback

A callback function that is called
when a user clicks on a pagination
link. The function receives two
parameters: the new page index and the
pagination container (a DOM element).
If the callback returns false, the
event propagation is stopped. Default
value: function(){return false;}. This
callback function is essential for the
functionality of the pagination! It
should contain code that updates your
content. For a fast user experience
you should NOT load content via AJAX
in this function. Instead, pre-load
some content pages and switch between
them with this function.

e.g code of plugin usage [ from its demo]:

attach pagination plugin:

$("#News-Pagination").pagination(122, {
    items_per_page:20,
    callback:pageselectCallback
});

callback function:

    /**
     * Callback function that displays the content.
     *
     * Gets called every time the user clicks on a pagination link.
     *
     * @param {int}page_index New Page index
     * @param {jQuery} jq the container with the pagination links 
     *                 as a jQuery object
     */
     function pageselectCallback(page_index, jq){
       var new_content 
         = $('#hiddenresult div.result:eq(' + page_index + ')').clone();
       $('#Searchresult').empty().append(new_content);
       return false;
     }

Thank you very much!!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T22:10:46+00:00Added an answer on May 19, 2026 at 10:10 pm

    Use a custom wrapper function, as is common in JS, to achieve that.

    callback: function(jq1, jq2, ..., jqN) {
      return pageselectCallback(your1, your2, jq1, jq2, ..., jqN);
    }
    

    Here jq1 through jqN are the parameters given by jQuery pagination plugin, while your1, your2 are parameters you specify yourself.

    IMPORTANT: The above is not valid JS syntax due to the ellipsis …, – change to match your situation

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using ASSERTE macro to check for pre-conditions. According to its definition it
According to this discussion , the iphone agreement says that it doesn't allow loading
According to Wikipedia, on the Comparison of programming languages page, it says that F#
According to the definition, a Junction Table (bridge table/link table) is used for many-to-many
According to this definition , Fowler's concept of Anemic Domain Model is: a software
According to the definition : As interface is not an object by itself ,I
According to the definition of action delegate it does not return value but passes
According to the definition of big O f(n) <= C*g(n) (which means f(n) =
According to wikipedia : functional programming is a programming paradigm that treats computation as
According to the manual , git dcommit will create a revision in SVN for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.