Skip to content

Instantly share code, notes, and snippets.

@jrpz
Created October 12, 2011 15:41
Show Gist options
  • Save jrpz/1281560 to your computer and use it in GitHub Desktop.
Save jrpz/1281560 to your computer and use it in GitHub Desktop.
Twitter Feed
<div id="tweets"></div>
<script>
var timeline_url = "http://twitter.com/statuses/user_timeline/USERNAME.json?count=1&callback=?";
$.getJSON(timeline_url, function(tweets){
$.each(tweets, function(i, tweet){
$('#tweets').append(tweet.text);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment