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