I have a table with rows of 2 input text boxes in each row:
<table>
<tr><td><input id="1_1" type="text"></td><td><input id="1_2" type="text"></td></tr>
<tr><td><input id="2_1" type="text"></td><td><input id="2_2" type="text"></td></tr>
<tr><td><input id="3_1" type="text"></td><td><input id="3_2" type="text"></td></tr>
</table>
If the user has just one of the input texts filled in, I would like to append a certain icon in front of the row. If the user has both inputs filled in, I would like to append a different type of icon. All of this occurs on a per row basis. How would I go about accomplishing this?
Any suggestions would be greatly appreciated.