я пытаюсь получить все тд из каждой строки, в которой атрибут colspan не определен
$('tr').each(function () {
$(this).find('td').each(function () {
if (($(this).text().trim() == "")) && // and this td not has colspan attribute {
$(this).closest("td").remove();
};
});
});