Making JQuery LightBox Plugin work with multiple galleries

后端 未结 9 552
难免孤独
难免孤独 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:24

    With very few changes I made this work with multiple galleries on one page.

    The JQuery

    $(function() {
      $('#gallery1 a').lightBox();
      $('#gallery2 a').lightBox();
      ...
      $('#galleryN a').lightBox();   
    });
    

    The HTML

    I changed the style from an id to a class.

提交回复
热议问题