Skip to content

Instantly share code, notes, and snippets.

@tejo
Created March 2, 2009 09:21
Show Gist options
  • Save tejo/72687 to your computer and use it in GitHub Desktop.
Save tejo/72687 to your computer and use it in GitHub Desktop.
$.getJSON("http://github.com/api/v1/json/tejo?callback=?", function(data){
$('#loader').remove();
$.each(data.user.repositories, function(i,repo){
$('#ghbadge').append('<li><a title="'+repo.description+'" href="'+repo.url+'" target="blank">'+repo.name+'</a></li>');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment