Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/02/2013, 12:21
Avatar de rottenp4nx
rottenp4nx
 
Fecha de Ingreso: octubre-2012
Ubicación: Santiago
Mensajes: 417
Antigüedad: 12 años, 1 mes
Puntos: 36
Respuesta: Seleccionar el siguiente <td> dentro de un <tr>

Código Javascript:
Ver original
  1. $(this).next().children('td:first');

ó

Código Javascript:
Ver original
  1. $(this).next().children('td').first();

Prueba con eso

Saludos