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.

My gallery works as expected in all browsers except IE<=8. Below is my anchor tag click event as well as the error message I'm getting when viewing in IE8.

Any thoughts?

Anchor tag:

<a href="#" id="showPics">View<br />12-Picture<br />Portfolio</a>

JS click event:

$('#showPics').click(function () {
        $.fancybox([
                {
                    'href': '/Images/Top20/01.jpg',
                    'title': '1 of 12'
                },
                {
                    'href': '/Images/Top20/02.jpg',
                    'title': '2 of 12'
                },
                {
                    'href': '/Images/Top20/03.jpg',
                    'title': '3 of 12'
                },
                {
                    'href': '/Images/Top20/04.jpg',
                    'title': '4 of 12'
                },
                {
                    'href': '/Images/Top20/05.jpg',
                    'title': '5 of 12'
                },
                {
                    'href': '/Images/Top20/06.jpg',
                    'title': '6 of 12'
                },
                {
                    'href': '/Images/Top20/07.jpg',
                    'title': '7 of 12'
                },
                {
                    'href': '/Images/Top20/08.jpg',
                    'title': '8 of 12'
                },
                {
                    'href': '/Images/Top20/09.jpg',
                    'title': '9 of 12'
                },
                {
                    'href': '/Images/Top20/10.jpg',
                    'title': '10 of 12'
                },
                {
                    'href': '/Images/Top20/11.jpg',
                    'title': '11 of 12'
                },
                {
                    'href': '/Images/Top20/12.jpg',
                    'title': '12 of 12'
                },
        ], {

            prevEffect: 'none',
            nextEffect: 'none',
            padding: '3',
            mouseWheel: 'true',
            helpers: {
                title: {
                    type: 'outside'
                },
                overlay: {
                    opacity: 0.8,
                    css: {
                        'background-color': '#000'
                    }
                },
                thumbs: {
                    width: 85,
                    height: 85
                }
            }
        });

    });

Error message from IE8:

error messsage

Fancybox.js code

fancybox_thumbs_js_line41

share|improve this question
{ 'href': '/Images/Top20/12.jpg', 'title': '12 of 12' }, <------ Extra Comma? – wirey Jun 6 '12 at 20:17
ya that comma would cause problems – zgood Jun 6 '12 at 20:21
@wirey that was it... thanks!!!!!! – blub Jun 6 '12 at 20:30
The extra comma was the issue... thanks @wirey – blub Jun 6 '12 at 20:32
no problem :) IE is very picky about everything – wirey Jun 7 '12 at 14:40

1 Answer

Try removing the "/" character at the beginning of your href strings

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.