I have the following table which is loaded dynamically into a <div>
.
Now I am trying to traverse into the table as to disable all the input fields in the first column titled "index". How would I go about that?
What I have come up with is the following, but it fails:
$('#output').find('tr').each().find('td').first().find('input').attr('disabled','disabled');
This should work as well.
$('#output tr td:first-child input').attr('disabled', 'disabled');
Everything in one selector. Tested in chrome only