There is an issue occurring when selecting the checkbox. The checkbox is not working properly for Firefox ESR 102. But it is working fine with Firefox ESR 68.4.2 version as well as the google chrome.
This method doesn't call when using Firefox ESR 102 that the issue. Any way to write this method to be compatible with both Firefox versions.
$(document).on('change', '#specialNote', function (e) {
var value = "N";
if ($(this).is(':checked')) {
value = "Y";
}
productEvent.updateSpecialNote($('#eventId').val(), value);
});
Thank you