Last active
February 18, 2016 16:20
-
-
Save courtneyphillips/e6eac5c782bcaf597736 to your computer and use it in GitHub Desktop.
Sample code provided for Epicodus Level 2 JavaScript Modern JS Apps Code Review
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// index.html | |
<html> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script> | |
<script type="text/javascript" src="js/git-interface.js"></script> | |
<title>Githupdates</title> | |
</head> | |
<body> | |
</body> | |
</html> | |
// git-interface.js | |
$(document).ready(function(){ | |
$.get({ | |
url: 'https://api.github.com/users/daneden/repos', | |
success: function(data){ | |
console.log(data); | |
} | |
}); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment