Consider my table with ten rows and I want to show first three rows in page1 and so on... How to paginate a table using jquery? Any good plugin....
I think easiest is datatables. Link: http://www.datatables.net/ using "paging: true"
So code would be something like:
$('#your-table').dataTable({ "scrollY": "350px", "scrollCollapse": true, "bSort": false, "paging": true });