how to select n-th td of a tr using jquery
using :nth-child() Selector
like
$("tr td:nth-child(2)")
the eq api should do this for you
$("table td").eq(n)
$('#id td:nth-child(3)');
Like so for the 3rd.
using :nth-child() Selector
like
$("tr td:nth-child(2)")
the eq api should do this for you
$("table td").eq(n)
$('#id td:nth-child(3)');
Like so for the 3rd.