Skip to content
jQuery(function ($) {
const buyNowBtn = $('.elementor-buy-now');
// Disable initially
buyNowBtn.prop('disabled', true).css({
opacity: '0.5',
pointerEvents: 'none'
});
$('form.variations_form').on('found_variation', function () {
buyNowBtn.prop('disabled', false).css({
opacity: '1',
pointerEvents: 'auto'
});
});
$('form.variations_form').on('reset_data', function () {
buyNowBtn.prop('disabled', true).css({
opacity: '0.5',
pointerEvents: 'none'
});
});
});