Skip to content

Instantly share code, notes, and snippets.

@caitlinhall
Created July 20, 2015 13:49
Show Gist options
  • Save caitlinhall/bebee0b5cef0e76e88a1 to your computer and use it in GitHub Desktop.
Save caitlinhall/bebee0b5cef0e76e88a1 to your computer and use it in GitHub Desktop.
// This Ajax call gets data back from your GitHub account.
$.ajax({
type: 'GET',
url: 'https://api.github.com/users/' + github_name,
dataType: 'jsonp',
success: function(json) {
github = json.data;
githubHtml(json);
},
error: function(error) {
console.log(error);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment