Skip to content

Instantly share code, notes, and snippets.

@pinalj
Created November 2, 2017 11:08
Show Gist options
  • Save pinalj/dda3a22d9ca77cfbe550aadedf51c3e1 to your computer and use it in GitHub Desktop.
Save pinalj/dda3a22d9ca77cfbe550aadedf51c3e1 to your computer and use it in GitHub Desktop.
JS file to run the AJAX
jQuery( document ).ready( function() {
jQuery( document ).on( 'click', '.my-dismiss-notice .notice-dismiss', function() {
var data = {
action: 'my_dismiss_notice',
};
jQuery.post( notice_params.ajaxurl, data, function() {
});
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment