Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/04/2012, 17:28
Avatar de marlanga
marlanga
 
Fecha de Ingreso: enero-2011
Ubicación: Murcia
Mensajes: 1.024
Antigüedad: 13 años, 3 meses
Puntos: 206
Respuesta: Cerrar Menu al abrir Otro

http://jsfiddle.net/mFx4G/1/

Estilo
.subt{ display:none; }
Script
$('.titulo').click (function(){
$(".subt").not($(".subt",$(this))).slideUp("slow") ;
$(".subt",$(this)).slideToggle("slow");
});