Skip to content

Instantly share code, notes, and snippets.

@jrpz
Created December 4, 2009 19:53
Show Gist options
  • Save jrpz/249299 to your computer and use it in GitHub Desktop.
Save jrpz/249299 to your computer and use it in GitHub Desktop.
$.getJSON("http://twitter.com/statuses/user_timeline/ThreeGearMedia.json?count=5&callback=?",
function(data){
$.each(data, function(i, item){
$('#twitter').append('<li>' + item.text + '</li>');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment