Skip to content

Instantly share code, notes, and snippets.

@tomrandle
Created January 2, 2014 23:21
Show Gist options
  • Save tomrandle/8229157 to your computer and use it in GitHub Desktop.
Save tomrandle/8229157 to your computer and use it in GitHub Desktop.
jQuery to extract old style Flickr embed image. Run in console by right clicking 'inspect element' then changing to the console tab, pasting the code in a and pressing enter. You need the bit that's returned in the format <a href=""><img src=""></a>
var imageSource = $('.main-photo').src;
var photoPage = window.location.href;
var htmlString = '<a href="' + photoPage + '"><img src="' + imageSource + '"></a>';
console.log(htmlString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment