Skip to content

Instantly share code, notes, and snippets.

@bencevans
Created June 5, 2013 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bencevans/5716739 to your computer and use it in GitHub Desktop.
Save bencevans/5716739 to your computer and use it in GitHub Desktop.
@gifs Tweets 2 Images
$('.tweet').each(function() {
if($(this).find('.username').text() == '@GIFs') {
var el = $(this).find('.tweet-text');
el.html('<img style="max-width: 100%;" src="' + el.text() + '" alt="' + el.text() + '"/>');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment