Skip to content

Instantly share code, notes, and snippets.

@vitqst
Created May 28, 2017 17:48
Show Gist options
  • Save vitqst/89eb39c1f4c301199382820326c1aad3 to your computer and use it in GitHub Desktop.
Save vitqst/89eb39c1f4c301199382820326c1aad3 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$('#allsizes-photo').children('div').remove();
$('#allsizes-photo').children('img').each(function(){
var $this = $(this);
$this.wrap('<a href="' + $this.attr('src') + '" download />')
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment