Hi,
I am integrating jQuery Fancybox with the products listings, in Actinic V7.0.7
The fancybox is running fine but I can not get the thumbnail to appear on the page. The code for the Act_ProductImage.html is as follows:
<script type="text/javascript">
$(document).ready(function() {
$("a#single_image").fancybox();
});
</script>
<div align="center">
<a href="NETQUOTEVAR:IMAGEFILE" id="single_image">
<img id="thumbnail" src="NETQUOTEVAR:ProductThumbnailImageFileName" border="0"><br />
enlarge image
</a>
</div>
There are also 3 javascript calls in both Act_Primary.html and Act_BrochurePrimary.html.
If you need to check the code it should be viewable at http://www.cardsforeveryone.co.uk although this is currently in production so may be up and down.
I am integrating jQuery Fancybox with the products listings, in Actinic V7.0.7
The fancybox is running fine but I can not get the thumbnail to appear on the page. The code for the Act_ProductImage.html is as follows:
<script type="text/javascript">
$(document).ready(function() {
$("a#single_image").fancybox();
});
</script>
<div align="center">
<a href="NETQUOTEVAR:IMAGEFILE" id="single_image">
<img id="thumbnail" src="NETQUOTEVAR:ProductThumbnailImageFileName" border="0"><br />
enlarge image
</a>
</div>
There are also 3 javascript calls in both Act_Primary.html and Act_BrochurePrimary.html.
If you need to check the code it should be viewable at http://www.cardsforeveryone.co.uk although this is currently in production so may be up and down.
Comment