I can access the row with:
$('#records tbody tr')[i]
But the object returned does not have a .css property. Accessing
$('#records tbody tr').val(i)
returns all the rows in the table, which is not what I want, but it does have the .css property.
How can I access a specific index i of my table and change its css?