Utilizo este acordeón:
EJEMPLO
Pero necesito que me funcione con varias Divs.
Así tengo mi estructura:
Código Javascript:
Ver original
var clic = 1; function divLogin(){ if(clic==1){ document.getElementById("caja_botonera").style.height = "500px"; clic = clic + 1; } else{ document.getElementById("caja_botonera").style.height = "0px"; clic = 1; } }
Código HTML:
Ver original
Código CSS:
Ver original
#caja_botonera { width: 300px; height: 0px; display: block; background-color: #FF0000; transition: height .4s; }
¿Cómo hago para que me funcione con varias DIV?
Gracias por su ayuda