I have a table, has many rows. for example one of from rows(all rows are same):
<tr>
<td>
<input type="text" />
</td>
<td>
<textarea cols="40" rows="3" ></textarea>
</td>
<td>
<select id="chbTypes11">
//options
</select>
</td>
<td>
<input type="text" />
</td>
<td>
<input type="checkbox" />
</td>
</tr>
select element is disabled by default.
How to determine, input value has value? for enabling select element in this row
If by ‘input’ you mean any kind of input element other than a select, then:
If you’re only referring to the textbox, just change the selector to
$("tr input:text")