jQuery / Colorbox - create a separate link to open the colorbox?

后端 未结 4 458
一个人的身影
一个人的身影 2021-01-12 11:44

I\'m trying to open a jQuery Colorbox from a link outside the rest of the colorbox images. So, all of the examples look like this:



        
4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-12 12:24

    Try this:

    $(".link-to-click").click(function() {
       $("a.colorbox-link").colorbox({open:true, rel:'colorbox-class-group'});
    });
    

提交回复
热议问题