Created
April 5, 2018 08:48
-
-
Save ppassmannpriv/8e6990d0fc4e5bb201b5ffd85cc99725 to your computer and use it in GitHub Desktop.
get all fancybox images as downloadlinks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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