jquery tweets
HTML
<script src="https://raw.github.com/kaleb/jQuery-Tweets/master/js/jquery.tweets.0.1.js"></script>
<ul id="tweets">
</ul>
CSS
#tweets {
background:#FAFAFA;
border:1px solid #e4e4e4;
margin:0;
padding:0;
}
#tweets li {
border-bottom:1px dotted #CCC;
list-style:none;
padding:5px;
}
#tweets li:last-child {
border:0;
}
JavaScript
$('#tweets').tweets({
tweets:4,
username: "thekaleb"
});