Skip to content

Instantly share code, notes, and snippets.

@susanBuck
Created November 15, 2011 16:10
Show Gist options
  • Save susanBuck/1367456 to your computer and use it in GitHub Desktop.
Save susanBuck/1367456 to your computer and use it in GitHub Desktop.
basic ajax
$.ajax({
url: 'ajax_page.php',
data: { foo:bar },
success: function(data) {
console.log("Done!");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment