Skip to content

Instantly share code, notes, and snippets.

@JayWood
Created April 11, 2016 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JayWood/6366b64a194004a8e64c63e9e5515719 to your computer and use it in GitHub Desktop.
Save JayWood/6366b64a194004a8e64c63e9e5515719 to your computer and use it in GitHub Desktop.
ajax example
jQuery.post( ajaxurl, jQuery( '#theForm' ).seraizlize(), function( response ) {
/**
* At this point, response should equal a json encoded response
* SO if you're doing something like this:
*
* wp_send_json_success( array( 'some_key' => 'some value' ) )
* you can access it like so:
*/
if ( response.success ) {
// Success data is stored within response.data
alert( response.data.some_key );
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment