I have a table with a couple of rows, each row with two columns, the first column will hold title and second column will have the respective values.sometimes, cells in the right
You can try this:
$(document).ready(function(){ $('.EventDetail tr').each(function(){ if ( $(this).children().not('.TableFields').text().length == 0 ) $(this).hide(); }); });