I'm working with a large HTML table that looks like this:
<table>
<tr>
<td>value1</td>
<td>value2</td>
</tr>
<tr>
<td>value3</td>
<td>value4</td>
</tr>
</table>
Each value in the table needs to have a dropdown feature for users to click and change the value via an ajax function. What would be the most efficient way to implement this? Multiple dropdowns, one per value? A single dropdown that changes position? How should I tackle this task?