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 problem: using Shadowbox - http://www.shadowbox-js.com/

I need 2 or more links in one page that open one image in a gallery, without duplicate it.

The structure:

<start html page>
<link highlight (random box with some featured img)>
<link to Shadowbox_GalleryA (total gallery with all images)>
<end html page>

The concept 1 is (not mine):

to not Shadowbox one of the links, ie don't get duplicate items into your Shadowbox gallery in the first place. Let's say we keep the thumbnail as is, but make sure it (the link that is) has a unique id ... Thumbnail of Image One, linked to Image One [shadowbox, gallery=MyGallery], id=ThumbImageOne

For the link on the full size image we don't Shadowbox it, but attach a click handler that opens the thumbnail link...

Image One, linked to Image One [click handler="Shadowbox.open(document.getElementById('ThumbImageOne'));return false;"]

Clicking on either the thumbnail or the full size image will initiate the Shadowbox gallery, but in both cases the actual item activator for the Shadowbox is the thumbnail link.

The concept 2 (mine) is: We have this Shadowbox_GalleryA[image(1), image(2), image(3)...]. Is there a way to get the index number of gallery and create a click handler that opens the element Shadowbox_GalleryA[image(X)]?

The question: Are concepts rights? I'm a very basic javascript user, anyone can help me with this script?

Thanks Gab

share|improve this question

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.