hide show
Mon Jan 24 2022 23:39:36 GMT+0000 (Coordinated Universal Time)
Saved by
@chicovirabrikin
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
content_copyCOPY
Comments