Stile Ayudante
Cantidad de envíos : 95 Puntos : 57835 Reputación : 4 Fecha de inscripción : 05/02/2009 Edad : 32 Localización : Buenos Aires, La Plata
| Tema: -Codigo-Ocultar Objetos Jue Mar 26, 2009 8:07 am | |
| boton para ocultar y mostrar contenido:
Boton sencillo - Código:
-
<div><input value="Ver más" onclick="if(this.parentNode.getElementsByTagName('div')[0].style.display != ''){this.parentNode.getElementsByTagName('div')[0].style.display = '';this.value = 'Ocultar';}else{this.parentNode.getElementsByTagName('div')[0].style.display = 'none'; this.value = 'Ver más';}" type="button" /><div style="display: none;">Contenido oculto</div></div> Boton decorado * wedmasterayuda.es.tl * - Código:
-
<div><input value="Ver más" style="color:white;background:#000000;border:1px ridge white;margin-left: 50px; padding: 0px; width: 80px; font-size: 14px; font-family: trebuchet ms;" onclick="if(this.parentNode.getElementsByTagName('div')[0].style.display != ''){this.parentNode.getElementsByTagName('div')[0].style.display = '';this.value = 'Ocultar';}else{this.parentNode.getElementsByTagName('div')[0].style.display = 'none'; this.value = 'Ver más';}" type="button" /><div style="display: none;">Contenido oculto</div></div> | |
|