If i have a list of checkboxes and they have the same name and different values. I want to write the value from the checkboxes i have checked in a new column in real-time. How can i do this ?
<div id="checkboxes">
<input type="checkbox" name="prod" value="Option 1" checked="checked" />Option 1
<input type="checkbox" name="prod" value="Option 2" />Option 2
<input type="checkbox" name="prod" value="Option 3" />Option 3
<input type="checkbox" name="prod" value="Option 4" checked="checked" />Option 4
</div>
Result:
Option 1Option 4