how to select n-th td of a tr using jquery

Solution 1:

using :nth-child() Selector

like

$("tr td:nth-child(2)")

Solution 2:

the eq api should do this for you

$("table td").eq(n)

Solution 3:

$('#id td:nth-child(3)');

Like so for the 3rd.