/ Published in: JavaScript
Expand |
Embed | Plain Text
function mostrarOcultar(nombre) { elemento = document.getElementById(nombre); elemento.style.display = elemento.style.display == "block" ? "none" : "block"; }
Comments
Subscribe to comments
- Posted By: arcturus on August 15, 2006
You need to login to post a comment.
