flaviusmatis / simplePagination.js

A simple jQuery pagination plugin.
Other
784 stars 402 forks source link

print paginated table #126

Closed gdguradio closed 7 years ago

gdguradio commented 8 years ago

I have a table which is paginated using simple pagination. The entry per page is only 10. I want to print all the pages but I have no idea how to. I can print them one by one using

$('.printMe').click(function(){
     window.print();
});

I added

.dontprint{ 
    display : none
}

for elements that i don't need to print that includes the button in the pagination. The div that contains the number of pages

If i have 50 pages that is so much click and waste of time.

Note:

I. Even if i add dontprint class to the pagination pages it wont disappear during printing

JosephMart commented 7 years ago

Is there no solution for this?