Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/07/2012, 01:06
Avatar de Wertas
Wertas
 
Fecha de Ingreso: julio-2012
Mensajes: 5
Antigüedad: 12 años, 3 meses
Puntos: 2
Respuesta: Mostrar y ocultar capa con jquery

Mil gracias! con el stopPropagation() me ha ido de perlas!

aquí la solución:

Código:
$('body').click(function(){
	$('#quicksearch').fadeOut("middle");
});
		
$('#keywords').click(function(event){
	event.stopPropagation();
	$('#quicksearch').show();
});