Real-time Twitter Postings About Accessibility
Javascript
<script src="js/slides.js" type="text/javascript"></script>
<script language="javascript" src="js/jquery.js" type="text/javascript"></script>
<script language="javascript" src="js/jquery.tweet.js" type="text/javascript"></script>
$(document).ready(function(){
getTweets();
});
current_tweet_id = 0
function getTweets() {
$(".tweet").tweet({
username: "",
join_text: "",
avatar_size: 48,
count: 5,
loading_text: "Loading tweets...",
query: "accessu OR accessibility OR disability OR accesscampdc OR accessibilitydc OR a11y OR jfc3",
max_id: current_tweet_id
});
window.setTimeout(getTweets,10000);
}
function getTweetid() {
alert(current_tweet_id);
}