What I have to work with: An html table 5X7. On many queries, there are less that 35 items filling the complete table.
How can I \"hide\" the empty cells dynam
Obviously you'll want to adjust the selector to fit your specific needs:
$('td').each(function(){ if ($(this).html() == '') { $(this).hide(); } });