I have a table with 64 inputs and i want to check if all input values inside table #Matrix are not empty. If at least one input value is not empty then we are okay. Below is what i am trying.
It only returns true if only the very first input is not empty.
if (!$('table #Matrix1 input').val()) {
console.log("Empty");
return false;
}