I am experiencing an issue in jQuery when I do multiple jsonp requests, all with the same jsonpCallback function. It seems that only for the one of those the callback functi
Use the success callback instead..
function userinfo(username){ $.ajax({ url: "https://api.github.com/users/" + username, success: getName, dataType: "jsonp" }); }