Files
2026-04-28 15:13:50 +02:00

19 lines
395 B
JavaScript

'use strict';
(function ($) {
$(document).on('click', '.sm-close-temporary-notice, #shopmagic_two_week_rate_notice .notice-dismiss', function (event) {
event.preventDefault();
let button = this;
$.ajax(ajaxurl,
{
type: 'POST',
data: {
action: 'shopmagic_close_temporary',
}
}
).done(function() {
$(button).parents('.notice').fadeOut();
});
});
})(jQuery);