Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/10/2010, 12:28
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses
Puntos: 65
Respuesta: Obtener posicion

jQuery tiene un método para obtener el índice de elementos, fijate la doc http://api.jquery.com/index/

las posiciones comienzan con 0
Código HTML:
Ver original
  1.     <title>Pruebas</title>
  2. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  3. $(function(){
  4.     $("li").click(function(){
  5.         alert ( $(this).index() );
  6.     });
  7. });
  8.  
  9. </head>
  10. <ul>
  11.    <li>Item 1</li>
  12.    <li>Item 2</li>
  13.    <li>Item 3</li>
  14. </ul>
  15. </body>
  16. </html>