$("table").find("tr:eq(4)").each(function () {
if($.trim($(this).text())==""){
$(this).remove();
}
});
$(".classname").find("tr:eq(4)").each(function (i){
var text = $(this).find("td").html();
if($.trim(text)==""){
$(this).remove();
}
});