Derp.
Printable View
Derp.
That's because you are trying to make a <td> act as a block element when it is not.
Code:function show(id) {
var e = document.getElementById(id);
e.style.display = (e.style.display == "none") ? "table-cell" : "none";
}
Thanks it works perfectly :)