Released on July 6, 2010.
Automatically adds row numbers on an existing table.
<script type="text/javascript" src="jquery.rowcount-1.0.js"></script>
Add row numbers to all tables:
$('table').rowCount();
startAt – lets you start the next count at a specific number
column – lets you display the row count at a specific column
Eg,
$('table').rowCount({startAt:5, column:2});
Apply as many times on an existing table to have it recount the rows.