Skip to content

Instantly share code, notes, and snippets.

@aleua
Forked from KittenCodes/modal.js
Created February 23, 2020 22:14
Show Gist options
  • Save aleua/735aee86fd95dd2e2d0e1ee36c4ace2d to your computer and use it in GitHub Desktop.
Save aleua/735aee86fd95dd2e2d0e1ee36c4ace2d to your computer and use it in GitHub Desktop.
jQuery to create Lightbox popup using Oxygen's Modal element
jQuery('.lightbox-trigger').click( function() {
var image = jQuery(this).attr('src');
jQuery('.lightbox-popup').css('background-image', 'url(' + image + ')');
var caption = jQuery(this).next().text();
jQuery('.lightbox-popup-caption').text( caption );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment