JSFiddle - React, Tailwind, and code Playground
by TheFiddler
HTML
<div style="width:330px;height:330px; border:1px solid #000" id="TweetReader">Tweet</div>
<div id="TweetFeeder">
<h3>Recently Tweeted</h3>
<ul>
<li>
<a href="http://twitter.com/kascope/statuses/319477299701506049">
kascope: Ground control to Major Tom </a>
</li>
</ul>
</div>
JavaScript
var latesttweetfeed = jQuery("#TweetFeeder").html();
jQuery("#TweetReader").html(latesttweetfeed);
console.log(latesttweetfeed);