Código HTML:
<script type="javascript"> function moscu() { if (this.parentNode.nextSibling.childNodes[0].style.display != '') { this.parentNode.nextSibling.childNodes[0].style.display = ''; this.value = 'Ocultar'; } else { this.parentNode.nextSibling.childNodes[0].style.display = 'none'; this.value = 'Mostrar'; } } </script>
Código HTML:
<div class="divspoiler"> <input type="button" value="Mostrar" onclick="moscu" /> </div> <div> <div class="spoiler" style="display: none;"> <font color = "blue">Aquí el contenido que queremos ocultar</font> </div> </div> <div>