Ocultar o mostrar elementos html con js code example
Example: Ocultar o mostrar elementos html con js
//elemento html
//funcionn js
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}