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 ? ' ' +
title : '') + '</span>';
}
});
return false;
});
and HTML code
<a class="picture" href="http://localhost/test/my_page.html" title="Picture Page">Link</a>
Thanks!
'type' : 'iframe'rather than'type' : 'image'– JFK Mar 11 '12 at 10:35