jQuery(document).ready(function($) { /** * Process request to dismiss our admin notice */ $('#jetpack-notice .notice-dismiss').click(function() { //* Data to make available via the $_POST variable data = { action: 'apostrophe_jetpack_admin_notice', apostrophe_jetpack_admin_nonce: apostrophe_jetpack_admin.apostrophe_jetpack_admin_nonce }; //* Process the AJAX POST request $.post( ajaxurl, data ); return false; }); });