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.

I wonder how I can create a lightbox which loads the image in page with the urls of the links

Here is my code but it does not work:

   $("a.picture").click(function() { 
        $.fancybox({ 
           'padding'           : 0, 
           'overlayShow'   : false, 
           'transitionIn'  : 'elastic', 
           'transitionOut' : 'elastic', 
           'titlePosition' : 'over', 
           'type' : 'image', 
           'titleFormat'   : function(title, currentArray, 
currentIndex, currentOpts) { 
            return '<span id="fancybox-title-over">' + (currentIndex + 
1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + 
title : '') + '</span>'; 
           } 
        }); 
        return false; 
    }); 

and HTML code

<a class="picture" href="http://localhost/test/my_page.html" title="Picture Page">Link</a>

Thanks!

share|improve this question
4  
The default usage of fancybox is to open the the image in the url if i'm not mistaken. BTW , work on your accept rate. – Ofir Baruch Mar 10 '12 at 19:22
Seriously you've asked 9 questions on this site and never accepted an answer. Why would anyone help you? – Fresheyeball Mar 10 '12 at 19:35
Ofir Baruch: No, he did not accept by default. Fresheyeball: I do not have enough points – Jérémy Dupont Mar 10 '12 at 19:43
anyone has enough points to accept an answer as long as you are the OP – JFK Mar 10 '12 at 19:46
if opening a html page, you should set 'type' : 'iframe' rather than 'type' : 'image' – JFK Mar 11 '12 at 10:35

1 Answer

The script you have above also assumes that you have an html like this:

<a class="picture" href="images/picture.jpg">open image</a>

then you should also add to your script the option href like

$("a.picture").click(function() { 
        $.fancybox({ 
           'padding'           : 0, 
           'overlayShow'   : false, 
           'href': this.href, //<--LIKE THIS
           // etc....

that option will provide the URL from where fancybox will load the image.

NOTE: Asking questions is OK and we are glad to help, but as @ofir commented you should provide feedback and accept the correct answers provided by others so people will feel motivated to help you out in the future.

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.