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.
<a id="attachment3655" rel="Lightbox_109160" href="https://xenogamers.org/attachment.php?attachmentid=3655&d=1350682390">
<img class="thumbnail" border="0" style="float:CONFIG" alt="Click image for larger version.  Name: 253635_10150631007825720_595485719_18819556_7955719_n.jpg  Views: 32  Size: 100.9 KB  ID: 3655" src="https://xenogamers.org/attachment.php?attachmentid=3655&d=1359000187&thumb=1" title="Click image for larger version.  Name: 253635_10150631007825720_595485719_18819556_7955719_n.jpg  Views: 32  Size: 100.9 KB  ID: 3655">
</a>

$(document).ready(function () {
    $("#attachment3655").fancybox({
        openEffect: 'none',
        closeEffect: 'none'
    });
});

It won't recognize the a id at all, and I can't figure out why. I can't change the source above easily so I cannot figure out a way to do this with only jquery.

I've been working on it here: http://jsfiddle.net/2k8EP/226/

share|improve this question
in the fiddle, you are correctly selecting the element. jsfiddle.net/2k8EP/227 – Kevin B Jan 24 at 21:28
Yes but it isn't enabling the fancybox. If I select .thumbnail it works, but won't for the id of the a tag. – user1811105 Jan 24 at 21:28
Right, but the problem has nothing to do with the id, the problem is fancybox works on the image but not the anchor tag. – Kevin B Jan 24 at 21:31
Ohhhhhhhhhhh so should I just try and find whatever is in the a tag, so something like $("#attachment3655").find(".thumbnail").fancybox({ ? – user1811105 Jan 24 at 21:33

1 Answer

up vote 2 down vote accepted

Just add type: "image" to your API options

$(document).ready(function () {
    $("#attachment3655").fancybox({
        openEffect: 'none',
        closeEffect: 'none',
        type: "image"
    });
});

Your forked jsfiddle

BTW, that is documented HERE, tab FAQ, number 5.

share|improve this answer
I need to read more thoroughly :| Thanks mate! – user1811105 Jan 24 at 21:36
@user1811105 please don't forget meta.stackoverflow.com/a/5235/173947 so case closed ;) – JFK Jan 24 at 21:37
1  
Yeah it's making me wait 4 more minutes :| – user1811105 Jan 24 at 21:38

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.