I have a table containing many pairs of text input fields in separate columns. I want to iterate through the input fields in the first column and use those values to set the value of the corresponding input field in the adjacent column.
<table> <tr> <td><input type='text' class='left' /></td> <td><input type='text' class='right' /></td> </tr> <tr> <td><input type='text' class='left' /></td> <td><input type='text' class='right' /></td> </tr> ... </table>
I have just started learning jQuery so perhaps the answer is obvious. So far I have only
$('input.left').each(function() { // use the value of $(this) to set the // value of the text field to the .right })
Lots of ways to do this. Here’s one.
or another:
and so on.