wesnolte / Pajinate

A jQuery Pagination Plugin
http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/
MIT License
207 stars 97 forks source link

Multiple paginator on same page #32

Closed RakeshChouhan closed 9 years ago

RakeshChouhan commented 12 years ago

In my application I am using 2 paginator in same page with default configuration $('#global-faq-container').pajinate({ nav_label_first : '<<', nav_label_last : '>>', nav_label_prev : '<', nav_label_next : '>', num_page_links_to_display : 5, items_per_page : 5, wrap_around: true, abort_on_small_lists: true }).hide().fadeIn('slow');

and

$('#my-faq-container').pajinate({ nav_label_first : '<<', nav_label_last : '>>', nav_label_prev : '<', nav_label_next : '>', num_page_links_to_display : 5, items_per_page : 4, wrap_around: true, abort_on_small_lists: true }).hide().fadeIn('slow');

when I paginate using global paginate then the my-faq paginate also changing.

I am using the latest code and still facing the same problem.

RakeshChouhan commented 11 years ago

I am facing this problem, please fix this issue.

Lipdk commented 11 years ago

Explicit loop:

$('.paginacao').each(function(){ $(this).pajinate(); });