So I'm using jQuery to skin some form checkboxes, and am doing something like the following:
$('.sexyCheckBox').on("click", function(e) {
var clickedInput = $(this).parent().find("input");
clickedInput.prop("checked", !clickedInput.prop("checked"));
}
However, it seems that, even though the checkbox in form is indeed being toggled, the form's .change() event is not being called.
Is this a bug in jQuery or am I missing something?