how can you get a row by the index?
var rows = $(\'tr\', tbl); rows.index(0).addClass(\'my_class\');
For the first element (index 0) the answer provided to your earlier question should be fine.
For any nth element use eq selector
e.g:
var rows = $('tr:eq(8)', tbl);