I am quite new to jQuery, and I am having a difficult time querying an api with jQuery.
There appears to be no syntax error but code is not firing - all the variables and functions have been defined
$.get(githubsearch).success(function(r){
displayResults(r.items);
})
.fail(function(err){
console.log("failed to query Github");
})
.done(function(){
});