Skip to content

Instantly share code, notes, and snippets.

@roes888
Created July 22, 2014 03:08
Show Gist options
  • Select an option

  • Save roes888/f541db7a905157bc2066 to your computer and use it in GitHub Desktop.

Select an option

Save roes888/f541db7a905157bc2066 to your computer and use it in GitHub Desktop.
jQuery Ajax Basic
$.ajax({
url: url,
type: "GET",
success: function(callback){
}, error: function() {
}
});
$.ajax({
url: url,
type: "POST",
data: data,
success: function(callback){
}, error: function() {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment