Plugin Name: TweetMeme Retweet Button Plugin Description: Adds the TweetMeme Retweet Button at the top of the comment section. Plugin URL: http://help.tweetmeme.com/2009/04/06/tweetmeme-button/ Author: Dog Lover Author URL: https://www.intensedebate.com/people/doglover2688 Date Added: August 18th, 2009 Code: function add_tweetmeme() {var tweetmeme_div = document.createElement('div');tweetmeme_div.style.cssFloat = 'right';tweetmeme_div.id = 'id-tweetmeme-div';var tweetmeme_iframe = document.createElement('iframe');tweetmeme_iframe.frameBorder = 0;tweetmeme_iframe.scrolling = "no";tweetmeme_iframe.src = 'http://api.tweetmeme.com/button.js?style=compact&url=' + window.location.href;tweetmeme_iframe.height = "20px";tweetmeme_iframe.width = "90px";tweetmeme_div.appendChild( tweetmeme_iframe );document.getElementById('idc-container').insertBefore(tweetmeme_div, document.getElementById('idc-container').firstChild);} id_add_action( 'idcomments_func_load', add_tweetmeme ); CSS: N/A