jQuery(document).ready(function($) { $('.ac-update-framework.update-nag .close').click(function() { var ask = confirm( 'Click OK to hide this notification... We\'ll remind you again in 5 days.' ); if (!ask) return; $(this).parent().remove(); var data = { type: 'fw-notification-hide', action: 'ac_init_updates', value: 'framework' }; $.post(ajaxurl, data); }); $('.ac-update-theme.update-nag .close').click(function() { var ask = confirm( 'Click OK to hide this notification... We\'ll remind you again in 5 days.' ); if (!ask) return; $(this).parent().remove(); var data = { type: 'th-notification-hide', action: 'ac_init_updates', value: 'framework' }; $.post(ajaxurl, data); }); });