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