I have a html table like so. To summarize here is what i want. I plan on using tablesorrter plugin for paging, however instead of paging based on all tr rows, i need to only page based on certain tr rows with the same class name. Is it possible to do that.
<html>
<head>
</head>
<body>
<table>
<thead>
</thead>
<tbody>
<tr> -- 'class' page
</tr>
<tr>
</tr>
<tr>-- 'class' page
</tr>
<tr>
</tr>
<tr>-- 'class' page
</tr>
<tr>
</tr>
</tbody>
</table>
</body>
</html>
The following link helped me solve my riddle.
http://www.pengoworks.com/workshop/jquery/tablesorter/tablesorter.htm
I use the tr rows with no class in them as hidden rows, and this modification helps me collapse and expand. I got it working on a static table and am about to implement into my application. To summarize: Used table sorter to get my paging based on visible row.