What's the best way for selecting a table row by index using jQuery?
Thanks
If you don't have to worry about nested tables:
$('#tableId tr').eq(4)
Can't you just use tr[i]
tr[i]
You can do it all in the selector:
$('#tableId tr:eq(4)')