Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/10/2010, 20:03
Avatar de chicohot20
chicohot20
 
Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años, 5 meses
Puntos: 43
Respuesta: Obtener posicion

Gracias por la solucion, funciona bien, pero tambien hice mi propia solución en Jquery, pongo el codigo para los que quieran.
Código Javascript:
Ver original
  1. $("li").click(function(){
  2.         var current = $(this);
  3.         var abort = false;
  4.         var i=0;
  5.         while (!abort) {
  6.             if (current.prev().length!=0){     
  7.                 i++;
  8.                 current=current.prev();
  9.             }
  10.             else abort = true;
  11.         }
  12.         alert(i)
  13.         return false;
  14.     });
  15. <ul>
  16.  <li>Item 1</li>
  17.  <li>Item 2</li>
  18.  <li>Item 3</li>
  19. </ul>