jquery.minitwitter.js - http://minitwitter.webdevdesigner.com/
<script type="text/javascript">
var count = 20;
var page = 1;
$().ready(function(){
$('div.content_tweets div.tweet').hide();
$(".tweets_footer").css("display",'none');
$("#bird").click(function(){
count = count + 20;
if(count >= $("div.content_tweets div.tweet").length){
page++;
jQuery(".content_tweets").miniTwitter({username: 'REALTORdotcom', page: page});
setTimeout("$('div.content_tweets div.tweet').hide();$('div.content_tweets div.tweet:lt('+count+')').show();",2000);
}
$('div.content_tweets div.tweet').hide();
$('div.content_tweets div.tweet:lt('+count+')').show();
});
$("#omnion1_19_tiwter").css("display","block")
$("div.content_tweets").css('display','none');
setTimeout("$('div.content_tweets').css('display','block');$('div.tweets_footer').css('display','block');$('div.content_tweets div.tweet').hide();$('div.content_tweets div.tweet:lt('+count+')').show();",10000);
});
jQuery(".content_tweets").miniTwitter("REALTORdotcom");
</script>
Comments
Post a Comment