0
Good morning. I’m trying to check if a Father-Son table column has gone blank. Can someone help me?
// VERIFICA SE ALGUM COLUNA FICOU EM BRANCO
var elVlr = $('#itensInventario tbody > tr > td input.linhaItemInventario');
$.each(elVlr, function(i, el) {
if ($("#tb_NEX").val() == null || $("#tb_NEX").val() == "") {
Status = "erro";
}
});
Are you making a mistake? From what I’ve seen, your code is ok. Please explain the situation better.
– Douglas Garrido
if you have a minimal model of how this is the structure of your table, it helps more because I believe you are always looking at the same item
– andrepaulo