Tweet! Put Twitter on your site with this simple, unobtrusive jQuery widget
jQuery(function($){
$("#custom").tweet({
avatar_size: 51,
count: 4,
username: "lskoeln",
template: "{text} "
});
}).bind("loaded", function(){
$(this).find("a.tweet_action").click(function(ev) {
window.open(this.href, "Retweet",
'menubar=0,resizable=0,width=550,height=420,top=200,left=400');
ev.preventDefault();
});
});
|