Skip to content

Instantly share code, notes, and snippets.

@RoesWibowo
Created July 22, 2014 03:08
Show Gist options
  • Save RoesWibowo/f541db7a905157bc2066 to your computer and use it in GitHub Desktop.
Save RoesWibowo/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