JSFiddle - React, Tailwind, and code Playground

HTML

<input type="checkbox" id="serviceType-checkbox" name="serviceType[]" value="0" />

JavaScript

$(document).ready(function(){

target = jQuery("#serviceType-checkbox[value='0']")[0];

target.addEventListener('click', function(){
	alert('You clicked checkbox');
});

});