I have a table with a number of rows each row contain several input fields, example
<tr id='1'>
<td><input id='a' class='inputa'></td>
<td><input id='ab' class='inputa'></td>
<td><input id='abc' class='inputa'></td>
</tr>
<tr id='2'>
<td><input id='b' class='inputa'></td>
<td><input id='bc' class='inputa'></td>
<td><input id='bcd' class='inputa'></td>
</tr>
etc..
the inputs have all the same classes because I toggle the input class of the whole table, but is it posible to toggle the class of only an entire TR of inputs with a simple command?