Hi guys,
i have a for and lets say 4 checkboxes
i want to get the values of the checkboxes that are checked & to get the values of the checkboxes that are not checked.
so if someone check the A & C checkbox i will get that A&C has this value (because they are checked!) and B,&D has this value(because they are not checked)
example this is my table....
<table >
<tr>
<td><label><input type="checkbox">A</label></td>
<td><label><input type="checkbox">B</label></td>
<td><label><input type="checkbox">C</label></td>
<td><label><input type="checkbox">D</label></td>
</tr>
</table>
thanks in advance :) :)