Using a lightbox like ColorBox or jQuery Lightbox Plugin how can i make a single link which opens a gallery / array of images?
For example i have 1 thumbnail and when a
Using jQuery Lightbox Plugin, the example code says to do the following:
$(document).ready(function() {
$('#gallery a').lightBox({fixedNavigation:true});
$('#gallery a:gt(0)').hide();
});
That makes all the links open a lightbox and it should have the Next/Back links to browse through the gallery. Is that what you're looking for?
(The example is available here: http://leandrovieira.com/projects/jquery/lightbox/#example)