Skip to content

Instantly share code, notes, and snippets.

@hawkidoki
Last active April 22, 2018 19:09
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 hawkidoki/781691a9f9dc01f1dd1b9a7ad492c7dc to your computer and use it in GitHub Desktop.
Save hawkidoki/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