Skip to content

Instantly share code, notes, and snippets.

@gkz
Created July 6, 2012 01:45
Show Gist options
  • Save gkz/3057528 to your computer and use it in GitHub Desktop.
Save gkz/3057528 to your computer and use it in GitHub Desktop.
livescript backcalls example
$.getJSON('url', function(json){
$.get(json.url, function(results){
alert(results);
});
});
json <-! $.getJSON \url
results <-! $.get json.url
alert results
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment