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