Skip to content

Instantly share code, notes, and snippets.

@fagiani
Created August 13, 2009 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fagiani/167197 to your computer and use it in GitHub Desktop.
Save fagiani/167197 to your computer and use it in GitHub Desktop.
//This will alert the self HTML
$.getJSON("?callback=?http://twitter.com/followers/ids/" + username + ".json",
function(data){
alert(data);
});
//This will alert the JSON data retrieved
$.getJSON("http://twitter.com/followers/ids/" + username + ".json?callback=?",
function(data){
alert(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment