I have a group of checkboxes in a div. Here is one as an example:
<input id="customer426693" name="customers" type="checkbox" class="filled-in form-check-input customerCheckbox customerRequired" value="426693">
I have also in my javascript function an array of values to be selected. Is there an elegant way to select all checkboxes that have values that exist in the array using jquery?
Thanks.