facyBox
facyBox copied to clipboard
Advanced Gallery Configuration
How do I link to different images within the same gallery?
For example, say I have two thumbnails and I want them to open their respective image within the gallery. How would I modify the jQ?
<div class="gallery">
<p><a style="cursor: pointer" id="open_gallery1" class="thumb">image</a></p>
<p><a style="cursor: pointer" id="open_gallery2" class="thumb">image</a></p>
<script>
jQuery('#open_gallery').click(function(){
jQuery.facybox({images:['demo/logo-facybox.png','images/coffee_48x48.png']})
});
</script>
</div>