Пожалуйста, помогите прикрутить
event.target.closest
к условию. Константа
checkbox_on_off
возвращает 'on' или 'false'. Возможно ли совместить константы
variation
и
checkbox_on_off
?
$(document).on('change', 'input.variable_manage_stock', function (event) {
const variation = event.target.closest('.woocommerce_variation');
const checkbox = event.target;
const checkbox_on_off = checkbox.matches('input.variable_manage_stock:checked') && checkbox.value;
if (checkbox_on_off == 'on'){}
if (checkbox_on_off == 'false'){}
});