All pastes #1576340 Raw Edit

Bird 4 Rick's Twitter WP plugin

public javascript v1 · immutable
#1576340 ·published 2009-09-23 10:18 UTC
rendered paste body
/*************************************************************If you have the wordpress twitter pluginhttp://rick.jinlabs.com/code/twitter/ (my favorite :) )this code:* turns the bulky text link to the tweet into a compact icon  (e.g. you can save http://tratmap.com/twitter-bird-icon.jpg)* sets all the links to target='_blank'(requires jquery.js from http://jquery.com/).See example at http://tratmap.com*************************************************************/$(function() {    $('.twitter-item').each(function() {        $(this).find('a').attr(            'target','_blank').slice(-1).html(            '<img src="/path/to/twitter-bird-icon.jpg"/>').attr(            title','View Tweet')}        );});