Integrate Galleriffic with Lightbox, how?

image, jquery, lightbox

Solution

To accomplish this, you will need to call the lightbox function each time an image/caption is loaded. You would need to do this in the galleriffic onTransitionIn callback like such:

...
onTransitionIn:         function() {
    $('#slideshow').fadeIn('fast');
    $('#caption').fadeIn('fast', function() {
        $('#caption a.lightbox').lightBox();
    });
},
...

Hope that helps!

Problem

Anybody has a idea how to intergrate Lightbox 0.5 with Galleriffic? (http://www.twospy.com/galleriffic/) When you click on the download button/text I want the image to open in a lightbox. Greatings, Bas

Original source