Skip to content

Instantly share code, notes, and snippets.

@ppassmannpriv
Created April 5, 2018 08:48
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 ppassmannpriv/8e6990d0fc4e5bb201b5ffd85cc99725 to your computer and use it in GitHub Desktop.
Save ppassmannpriv/8e6990d0fc4e5bb201b5ffd85cc99725 to your computer and use it in GitHub Desktop.
get all fancybox images as downloadlinks
jQuery('a.ngg-fancybox').each(function() {
var imageLink = jQuery(this);
var downloadLink = "<a style='padding: 20px; background: hotpink; color: white;' href='"+imageLink.attr('href')+"' download>Download this image</a>"
imageLink.parent().append(downloadLink);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment