Skip to content

Instantly share code, notes, and snippets.

View jrpz's full-sized avatar

Jaime Perez jrpz

View GitHub Profile
$.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>');
});
});