Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alekpopovic/df24a9e7262d9fb3bd75b0837bb1b56d to your computer and use it in GitHub Desktop.
Save alekpopovic/df24a9e7262d9fb3bd75b0837bb1b56d to your computer and use it in GitHub Desktop.
var user = "hantu";
$(document).ready(function() {
$.getJSON("http://github.com/api/v1/json/" + user + "?callback=?", function(data) {
$.each(data.user.repositories, function() {
$("body").append(
"<p><a href=\"" + this.url + "\">" + this.name + "</a></p>"
);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment