lomo:
Show Follower Count and Tumblr Follow Mode in action.
GK v1.5 だと動かなかったので、改造。っていうか、Tumblr の prototype.js って v1.4.0 なんだ。。。
new Ajax.Request(‘http://www.tumblr.com/followers’, {method:’get’, onComplete: function (res) {
var match_result = res.responseText.match(/(\d+)\s+people following/);
if (match_result) {
var follower_count = match_result[1];
var dashboardControls = $(‘dashboard_controls’).getElementsByTagName(‘a’);
dashboardControls[4].href = “/followers”;
dashboardControls[5].href = “/followers”;
dashboardControls[5].innerHTML = follower_count + ” Followers”;
}
}});


hCard