I have found other questions through which I learned how to hide the first row and the (first row’s) first cell using;
$('table#truetable tr:first').hide();
and
$('table#truetable td:first').hide();
But what if I want to hide for example the first cell of the second row using this approach?
:eqdocs