mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
13 lines
350 B
JavaScript
13 lines
350 B
JavaScript
|
jQuery(document).ready(function($) {
|
||
|
|
||
|
$( '.pp-404page-admin-notice' ).on( 'click', '.notice-dismiss', function ( event ) {
|
||
|
event.preventDefault();
|
||
|
data = {
|
||
|
action: 'pp_404page_dismiss_admin_notice',
|
||
|
pp_404page_dismiss_admin_notice: $( this ).parent().attr( 'id' )
|
||
|
};
|
||
|
$.post( ajaxurl, data );
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
});
|