Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/05/2012, 14:54
testeador
 
Fecha de Ingreso: abril-2012
Mensajes: 6
Antigüedad: 12 años, 7 meses
Puntos: 0
Respuesta: jQuery acordeon customizar

La solución para esto es

Código:
$('h3.sub').click(function() {
	$('h3.sub span').removeClass('active');
	$('.block').slideUp('normal');
	if($(this).next().is(':hidden') == true) {
		$(this).find('span').addClass('active');
		$(this).next().slideDown('normal');
	}
});
$('.block').hide();