How can you get the first row in a table with a specific className?
var rows = $(\'tr\', tbl);
var rows = $('tr.classname:first', tbl);
or
var rows = $('tr.classname', tbl).first();
Docs here: http://api.jquery.com/category/selectors/