Making JQuery LightBox Plugin work with multiple galleries

后端 未结 9 549
难免孤独
难免孤独 2020-12-17 00:55

I\'m trying to make this jquery plugin => http://leandrovieira.com/projects/jquery/lightbox/ work with multiple galleries on the same page.

The problem is, everytime

9条回答
  •  时光取名叫无心
    2020-12-17 01:07

    Perhaps lightbox has changed since other answers were given, but I thought the answers on this page were good, but then I discovered that I could simply do:

        jQuery('.lightbox').each(function(){
                jQuery('a', this).lightBox();
        });
    

    That assumes an HTML structure of:

    
    

    The wrapper class isn't needed, I think, but my code included it for other reasons.

提交回复
热议问题