Skip to content

Instantly share code, notes, and snippets.

@hantu
Created February 17, 2009 14:59
Show Gist options
  • Save hantu/65769 to your computer and use it in GitHub Desktop.
Save hantu/65769 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>"
);
});
});
});
@HimDek
Copy link

HimDek commented Nov 22, 2021

Maybe it worked 13 years ago but not now.
Click here to view my working JavaScript.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment