Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With the modules fancybox i try to show a photo gallery in a modal page (fancybox).

The problem is that the images are showing 11 times and i don't know why. I already search and i use the correct syntax.

Here is my code:

JQUERY

$(".testGatorade[rel=group1]").fancybox({
            'speedIn'        :    200,
            'speedOut'        :    200,
            'overlayShow'    :    false,
            'modal'          : true,
            'showCloseButton' : true,
            'titleShow'       : true,
            'titlePosition'   : 'over',
            'titleFormat'        : function(title, currentArray, currentIndex, currentOpts) {
                return '<span id="fancybox-title-over">Image ' + currentIndex + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
            }
        });

HTML

<div id="slider1">
                <a class ="testGatorade" href = "images/eagle.jpg" rel="group1" title = "Test de titre">
                    <img src = "images/eagle.jpg" width = "300" height = "300"/>
                </a>
                <a class ="testGatorade" href = "images/ring.jpg" rel="group1"></a>
                <a class ="testGatorade" href = "images/tarantula.jpg" rel="group1"></a>
            </div>

Thanks for helping,

i work on it since 4 days.

share|improve this question
can you reproduce in a jsfiddle? – Rene Pot Jul 31 '12 at 13:56
no i cant, its a plugin... fancybox.net/howto – user1440480 Jul 31 '12 at 13:57
fancybox sucks, use colorbox instead: stackoverflow.com/questions/11718363/jquery-pop-up-alert-needed/… – Barlas Jul 31 '12 at 13:58
1  
try updating to fancybox v2, which doesn't suck at all... fancyapps.com/fancybox – neokio Jul 31 '12 at 13:59
1  
You can add plugins to jsFiddle - all you need is a url to the source code and you can add it as a resource. – Sam Tyson Jul 31 '12 at 14:00
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.