CSS: Make a Table Row Appear and Disappear (Cross Browsing)

To make it disappear (as usual):

xxxx.style.display = “none”;

To make it appear:

xxxx.style.display = “”;

The last trick is because, this:

xxxx.style.display = “table-row”;

wouldn’t work in IE6 and IE7

This entry was posted in HTML / CSS, Javascript. Bookmark the permalink.

Leave a Reply