Skip to content

Instantly share code, notes, and snippets.

@hwkdev
Last active April 22, 2018 19:09
Show Gist options
  • Select an option

  • Save hwkdev/781691a9f9dc01f1dd1b9a7ad492c7dc to your computer and use it in GitHub Desktop.

Select an option

Save hwkdev/781691a9f9dc01f1dd1b9a7ad492c7dc to your computer and use it in GitHub Desktop.
$.ajax({
url: 'ajax.php', // WP root install file: ajax.php
data: {
action: 'my_action',
variable: 'my_variable'
},
type: 'post',
success: function(response){
console.log(response);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment