Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created December 15, 2014 22:36
Show Gist options
  • Save barrykooij/ff5cfe13cac445428a4c to your computer and use it in GitHub Desktop.
Save barrykooij/ff5cfe13cac445428a4c to your computer and use it in GitHub Desktop.
<script type="text/javascript">
jQuery( document ).ready( function ( $ ) {
var data = {
action: 'my_action',
security: '<?php echo wp_create_nonce( "bk-ajax-nonce" ); ?>'
};
$.post( ajaxurl, data, function ( response ) {
alert( "Response: " + response );
} );
} );
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment