Skip to content Skip to sidebar Skip to footer

Multiple Fancybox 2 Galleries Issue With "rel"

I've seen some questions that address similar issues but none of the fixes seem to work for my situation. Basically I have multiple fancybox galleries on one page throughout the si

Solution 1:

This part of your code :

$(".fancybox")
    .attr('rel', 'gallery')
    .fancybox({
    .... etc

...is overriding the rel attributes in your html. Just remove the .attr() method from it like :

$(".fancybox")
    .fancybox({
    .... etc

... and you will be fine.

Post a Comment for "Multiple Fancybox 2 Galleries Issue With "rel""