How do I get the value of CheckboxSelectMultiple in Javascript in Django Template?
I have a CheckboxSelectMultiple in a Django form like this : forms.py LIST= [ ('Oranges', 'Oranges'), ('Cantaloupes', 'Cantaloupes') ] testrever = forms.MultipleChoiceField(required=False,widget=forms.widgets.CheckboxSelectMultiple(choices=LIST)`) I would like to get the Checkboxes value, each time that one of them is there is selected…