To do this, you will need to call the lightbox function every time you upload an image / caption. You will need to do this in the galleriffic onTransitionIn callback, such as:
...
onTransitionIn: function() {
$('#slideshow').fadeIn('fast');
$('#caption').fadeIn('fast', function() {
$('#caption a.lightbox').lightBox();
});
},
...
Hope this helps!
Trent source
share