Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/09/2009, 07:51
Avatar de emiliodeg
emiliodeg
 
Fecha de Ingreso: septiembre-2005
Ubicación: Córdoba
Mensajes: 1.830
Antigüedad: 19 años, 2 meses
Puntos: 55
Respuesta: Problema con funcion each() de jQuery

bueno hay q hacer una pequeña correccion para q soporte el formato textolink0, textolink1, ...

Código javascript:
Ver original
  1. $(document).ready(function(){
  2. var i=0;
  3. $('#vids').each(function(){
  4.         $('.textlink' + i).css('cursor', 'pointer');
  5.         // Para cada enlace con id=i cuando se haga click, lo muestro o lo oculto
  6.         $('.textlink' + i).click(function(){
  7.             $('.textooculto' + i).hide();
  8.         });
  9. i++;
  10.     });
  11. });
__________________
Degiovanni Emilio
developtus.com