Basically what the title says... just having trouble getting it to work and couldn't find a solution online.
Code:
var arr=new Array();
$('#tableC tr').each(function() {
var tr = $(this);
tr.find('td').each(arr, function() {
$(this).val();
});
});