Skip to content

Instantly share code, notes, and snippets.

@xaicron
Created June 12, 2010 04:29
Show Gist options
  • Save xaicron/435416 to your computer and use it in GitHub Desktop.
Save xaicron/435416 to your computer and use it in GitHub Desktop.
javascript:
(function(u,lr) {
lr = confirm('Left?') 'left' : 'right';
u = location.href.replace(new RegExp('http://twitter.com/([^/]+)/.*'), '$1');
alert(
'<div class="twitter_timeline">'
+ '<a href="' + location.href + '" target="_blank">'
+ '<img src="http://api.dan.co.jp/twicon/' + u + '/normal" class="' + lr + '" />'
+ '</a>'
+ '<p class="' + lr + '">' + u + ': ' + document.getElementsByClassName('entry-content')[0].innerHTML + '</p>'
+ '<br class="twitter_timeline_bottom" />'
+ '</div>'
);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment