Skip to content

Instantly share code, notes, and snippets.

@courtneyphillips
Last active February 18, 2016 16:20
Show Gist options
  • Save courtneyphillips/e6eac5c782bcaf597736 to your computer and use it in GitHub Desktop.
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
// 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