I\'d like to check for empty TDs (classes a-h only) and if all are empty, then I\'d like to hide the parent TR. The issues I\'m running into are, my empty TDs contain \" \"
Why not leave out the non-breaking spaces? I'm guessing they are there for styling purposes on empty TDs?
If so you can use this CSS to solve that issue:
table { empty-cells: show; }
Corrected CSS.