Skip to content

Instantly share code, notes, and snippets.

@pastak
Last active August 29, 2015 13:58
Show Gist options
  • Save pastak/10006686 to your computer and use it in GitHub Desktop.
Save pastak/10006686 to your computer and use it in GitHub Desktop.
$('.tl-tweet').each(function(index,item){
var text = $(item).find('.tl-text').text();
var url = $(item).find('.tl-posted > a').prop('href');
$(item).append($('<input>').prop('value','['+url+':embed#'+text+']').css({width:'100%'}).on('click',function(){
$(this).select();
}));
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment