I have this code:
$("#widgetstable tr td:nth-child("+column+")").hide();
But it selects any td's that happen to be nested inside the selected td's. (And there are a couple.)
I tried $("#widgetstable > tr > td:nth-child("+column+")").hide();
but it didn't select ANYTHING.