Skip to content
;$(document).on('click', '#agree-btn', function(event) {
event.stopPropagation();
const $consentCheckbox = $('input[name="terms"]');
$consentCheckbox.prop( "checked", true );
$consentCheckbox.show();
});
$(document).on('click', '#terms', function(event) {
event.stopPropagation();
if (!$(this).is(':checked')) {
$(this).hide();
}
});;