I am in the the each() loop of a given <tr> on my page. How do I loop through all the <th> within $(this) i.e. within the current <tr>:
$('#my_table > tbody > tr').each(function() {
// how to loop through all the <th>'s inside the current tr?
});