A column is pretty much just cells, so you'll need to manually loop through all the rows and remove the cell by the index.
This should give you a good starting point for removing the 3rd column:
$("tr").each(function() {
$(this).children("td:eq(2)").remove();
});