How can I select nth < td > of a < tr > using jquery. Say, I want to select 3rd < td >. I have id for every tr. How can we achieve this ?
< td >
< tr >
using :nth-child() Selector
like
$("tr td:nth-child(2)")
1.4m articles
1.4m replys
5 comments
57.0k users