I've got no idea what's the intent, the reason or the audience but if you append a data attribute to each column cell...
|
You can then use jQuery to hide all cells that belong to a specific column...
$('td[data-col=1]').hide ();
You could also use the ':nth-child ()' css pseudo class but it is not supported by some IE browsers
Hope it makes sense