Mqleet's picture
[update] templates
a3d3755
raw
history blame
214 Bytes
function HideShowElement(elementId) {
var x = document.getElementById(elementId);
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}