Skip to content

Instantly share code, notes, and snippets.

@guiliredu
Last active August 19, 2016 19:38
Show Gist options
  • Save guiliredu/79741e510c7aab4ade5827a88e42fbff to your computer and use it in GitHub Desktop.
Save guiliredu/79741e510c7aab4ade5827a88e42fbff to your computer and use it in GitHub Desktop.
Example of jQuery XHR calls
// POST
$.post('/url', parameters, function(data) {
console.log(data);
});
// GET
$.get('/url', parameters, function(data) {
console.log(data);
});
// JSON
$.getJSON('/url', parameters, function(data) {
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment