JSFiddle - React, Tailwind, and code Playground

http://stackoverflow.com/questions/12845545/displaying-twitter-feed-stopped-working

by RASG

HTML

<script src="http://twitter.com/javascripts/blogger.js"></script>
The feed should display below:

<br>

<div id="tweet-list"></div>

CSS

body   { margin: 0.5em }

JavaScript

var url = "http://api.twitter.com/1/statuses/user_timeline/stackoverflow.json";

$.getJSON(url + "?callback=?", null, function(tweets) {
    for (i in tweets) {
        tweet = tweets[i];
        $("#tweet-list").append(tweet.text + "<hr />");
    }
});