|
Your code is causing the table row to display as a block element instead of a row; instead of display = 'block' it should be display = 'table-row', but of course ie doesn't support this.
So instead since this IS a table row you can just use display = '' to reset it to its default display mode.
Last edited by Kelpie; 12-06-2010 at 06:49 AM..
Reason: Rewording
|