This seems like it should be simple but I’m not sure what to do.
I’m attempting to have a jQuery function that would run when a true/false field is check or un-checked.
typically I could use something like
$(".checkbox").change(function() {
if(this.checked) {
//Do stuff
}
});
But the acf field isn’t triggering the .change() function and the doesn’t have the “checked” attribute.
What can use to run my function?