Now compatible with modal light boxes like Fancy Box for pop-up zoom images in addition to the built-in fly-out zoom.
Typically, you would insert code like this after loading jetzoom.js and jquery.fancybox.js:
<script type="text/javascript"> $(function () { $('#myZoom').bind('click', function () { var jetZoom = $(this).data('JetZoom'); // Get Jet Zoom instance. $.fancybox.open(jetZoom.getGalleryList()); // Pass list of images and titles to Fancy Box. return false; }); }); </script>
Info
Typically, you would insert code like this after loading jetzoom.js and jquery.fancybox.js:
<script type="text/javascript">
$(function () {
$('#myZoom').bind('click', function () {
var jetZoom = $(this).data('JetZoom'); // Get Jet Zoom instance.
$.fancybox.open(jetZoom.getGalleryList()); // Pass list of images and titles to Fancy Box.
return false;
});
});
</script>