B
brian.gaber
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="status_OnChange()" id="status11">
<option selected="selected" value="Active">Active</option>
<option value="Correction">Correction</option>
<option value="Audit">Audit</option>
<option value="Hold">Hold</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="status_OnChange()" id="status11">
<option selected="selected" value="Active">Active</option>
<option value="Correction">Correction</option>
<option value="Audit">Audit</option>
<option value="Hold">Hold</option>
<option value="Complete">Complete</option>
How can I determine which <SELECT ... triggered the onchange?