I have a table in which I need to get the input type checkbox element from a specific row. I tried selecting it like so (let's say I am interested in the first row)
$('tr :nth-child(1):checkbox')
yet I get ALL inputs from the table , not just from the row I need . Any thoughts what I'm doing wrong ?