Skip to content

Instantly share code, notes, and snippets.

@joelanman
Created July 31, 2016 20:14
Show Gist options
  • Save joelanman/c25460e29f33962e948d933b82a24c61 to your computer and use it in GitHub Desktop.
Save joelanman/c25460e29f33962e948d933b82a24c61 to your computer and use it in GitHub Desktop.
drawThing = function(data){
// you have access to data here
}
getThing = function(done){
$.ajax({
url: "moop.com",
success: function(response){
data = response.data;
done(data);
}
});
}
}
// kick it all off
getThing(drawThing);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment