jTwitter 介绍
jTwitter(jQuery Twitter
API)利用这个jQuery插件,给定一个Twitter用户名,就能够获取包含该用户详细信息的javascript对象包
括:followers&following counts,full name,homepage URL等。
// I am query data for "jQueryHowto" user $.jTwitter('jQueryHowto', function(posts){
//Callback functn with the user data
$(‘#profile input.url’).val(posts[0].user.url);
$(‘#profile #avatar’).html(‘‘);
});
jTwitter 官网
http://jquery-howto.blogspot.com/2009/04/jquery-twitter-api-plugin.html