how can you get a row by the index?
var rows = $(\'tr\', tbl); rows.index(0).addClass(\'my_class\');
You can use nth-child in your selector:
$('tr td:nth-child(3)').addClass('my_class');
Will get the third td.