I have a table inside a form and each row of the table has a similar
<SELECT ... statement, only the name and id is different.
Here is one example:
<select name="status11" onchange="statu s_OnChange()" id="status11">
<option selected="selec ted" value="Active"> Active</option>
<option value="Correcti on">Correctio n</option>
<option value="Audit">A udit</option>
<option value="Hold">Ho ld</option>
<option value="Complete ">Complete</option>
How can I determine which <SELECT ... triggered the onchange?
<SELECT ... statement, only the name and id is different.
Here is one example:
<select name="status11" onchange="statu s_OnChange()" id="status11">
<option selected="selec ted" value="Active"> Active</option>
<option value="Correcti on">Correctio n</option>
<option value="Audit">A udit</option>
<option value="Hold">Ho ld</option>
<option value="Complete ">Complete</option>
How can I determine which <SELECT ... triggered the onchange?
Comment