Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/02/2011, 21:06
LionCode
 
Fecha de Ingreso: febrero-2011
Mensajes: 33
Antigüedad: 13 años, 2 meses
Puntos: 0
Respuesta: Problema con show en jqury

Prueba asi
Código:
$('.principal img').hover(function(){
			$(this '.info').animate({bottom:'43px'},1000);
			
			},function(){
				$(this '.info').animate({bottom:'0px'},2000);
				});
		});