Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/08/2010, 20:24
Avatar de tredio
tredio
 
Fecha de Ingreso: noviembre-2008
Ubicación: Carabobo
Mensajes: 466
Antigüedad: 15 años, 5 meses
Puntos: 66
Respuesta: como mostrar titulo de la imagen en el div

creo que te bastaria haciendo esto.

Código Javascript:
Ver original
  1. scrollable.find('a').mouseenter(function(){            
  2.     var titleArt = $(this).attr('title');
  3.     $('#info_table').fadeIn(500);
  4.     $("#info_table").text(titleArt);
  5. });
  6. scrollable.find('a').mouseleave(function(){
  7.     $('#info_table').fadeOut(100);
  8. });