Skip to content

Instantly share code, notes, and snippets.

@dannylloyd
Created October 5, 2011 19:17
Show Gist options
  • Save dannylloyd/1265374 to your computer and use it in GitHub Desktop.
Save dannylloyd/1265374 to your computer and use it in GitHub Desktop.
Get github gists
function asdf() {
var url = "https://gist.github.com/api/v1/json/gists/dannylloyd";
$.getJSON(url + "?callback=?", null, function(result) {
$.each(result.gists, function(){
console.log(this);
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment