Skip to content

Instantly share code, notes, and snippets.

@n1lux
Created August 11, 2016 14:31
Show Gist options
  • Save n1lux/3ed9312dc51adc30d5dc81f54ebf1f08 to your computer and use it in GitHub Desktop.
Save n1lux/3ed9312dc51adc30d5dc81f54ebf1f08 to your computer and use it in GitHub Desktop.
Ajax Call Back
function my_function(id) {
var system = getajaxdata(name);
system.done(function(data){
var information = data.info;
// do stuff with `information` here, not elsewhere.
});
}
function getajaxdata(name){
return $.ajax({
type:"GET",
url: getUrl(),
cache: false,
dataType: "json"
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment