All pastes #1576332 Raw Edit

Facelift 4 Rick's Twitter WP plu

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