Duplicar função
Como duplico este JavaScript Abaixo sem dar comflito ?
<script>OCULTO="none";VISIBLE="block"; function mostrar(blo) { document.getElementById(blo).style.display=VISIBLE; document.getElementById('ver_off').style.display=VISIBLE; document.getElementById('ver_on').style.display=OCULTO;} function ocultar(blo) { document.getElementById(blo).style.display=OCULTO; document.getElementById('ver_off').style.display=OCULTO; document.getElementById('ver_on').style.display=VISIBLE;}</script>
Discussão (4)
Carregando comentários...