When I hide a td in a table by setting its display to none, the table does not resize correctly when using IE8.
If I have a table and want to remove an entire column, I might try something like this:
$("th:first, th:last, tr td:first-child, tr td:last-child").toggle(0);
This solution works in all browsers except for IE8. Unfortunately, in IE8, the remaining cells do not adjust to the available space and remain scrunched in their original widths. Any ideas on how to fix this issue?