I am running into issues targeting a checkbox by it's id (serviceType-checkbox) and value (0) but am running into issues. Here is the code I have:
HTML:
<input type="checkbox" id="serviceType-checkbox" name="serviceType[]" value="0" />
jQuery:
target = jQuery("#serviceType-checkbox[value='0']");
Any help is much appreciated, thank you!