how to select n-th td of a tr using jquery I want to select 2nd td that is inside tr using jquery. How can i do this..
You can achive this using :nth-child() Selector
example
$("tr td:nth-child()")