Skip to content

Instantly share code, notes, and snippets.

@coryvirok
Created October 31, 2013 21:08
Show Gist options
  • Save coryvirok/7257206 to your computer and use it in GitHub Desktop.
Save coryvirok/7257206 to your computer and use it in GitHub Desktop.
function f(addr) {
$.getJSON(addr, function(d) {
if (d.follow) {
f(d.follow);
} else {
console.log(d);
}
})
}
f('http://letsrevolutionizetesting.com/challenge')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment