I'm trying to implement a pagination plugin for my webapp, and I found a good one. But I don't understand one section of the code that's commented "Do something with the page variable". I believe this is what's preventing the pagination plugin from completely working for me.
//Pagination
$('.pagination').jqPagination({
paged: function(page) {
// do something with the page variable
}
});