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
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