Alright I'm having problems with resetting specific checkboxes.
I have like so:
So heres what I'm trying to do. Its set so when you check on any check box, it will automatically uncheck the defcheck box. What I want it to do, is when you once again check on the defcheck, it will automatically reset the remainder of the checkboxes back to their original values. Any suggestions?
I have like so:
Code:
<input type="checkbox" name="defcheck" value="yes" CHECKED> <input type="checkbox" name="checkbox[]" value="1"> <input type="checkbox" name="checkbox[]" value="2" CHECKED> <input type="checkbox" name="checkbox[]" value="3"> <input type="checkbox" name="checkbox[]" value="4" CHECKED>
Comment