jQuery("body").on("click", '#logistic-warehouse-welcome-notice .notice-dismiss', function (event) {
event.preventDefault();
console.log("close clicked");
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
action: 'logistic_warehouse_dismissed_notice',
},
success: function () {
// Remove the notice on success
$('.notice[data-notice="example"]').remove();
}
});
}
)