Have a table column I\'m trying to expand and hide:
jQuery seems to hide the td elements when I select it by class but not by element\'s name.
td
You can use any attribute as selector with [attribute_name=value].
[attribute_name=value]
$('td[name=tcol1]').hide();