My site has the following:
<td><input id="inp_0001010030" type="checkbox"></td> <td><input id="inp_0001010031" type="checkbox"></td> <td><input id="inp_0001010032" type="checkbox"></td> <td><input id="inp_0001010033" type="checkbox"></td> <td><input id="inp_0001010034" type="checkbox"></td>
They are created dynamically.
And the form that is at the bottom of the page outside the area with the above lines:
<form action="??" method="??" > <input value="Action" type="submit"> <select id="SelectedAction" > <option value="1">Delete</option> <option value="2">Move</option> </select> </form>
After the lines have been created, I need the event to click the form button, look at each checkbox, and then call the javascript function with the identifier and the value SelectedAnswer for each checkbox set.
Please note that if there is a way to do this without a form, then it is even better. I just don't know enough about jQuery.
Is this what I can do with jQuery?
source share