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
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.
You may like these posts
Post a Comment for "Multiple Fancybox 2 Galleries Issue With "rel""