Beating my head blue on this one. The fancybox won't trigger on the preview images below. Everything is set according to manual.
http://www.itrosa.se/sv/Utstaellning_i_Trosa_kvarn/article/?i=s7486578460425622
any ideas?
Beating my head blue on this one. The fancybox won't trigger on the preview images below. Everything is set according to manual.
http://www.itrosa.se/sv/Utstaellning_i_Trosa_kvarn/article/?i=s7486578460425622
any ideas?
You have a JS error:
Error: jQuery("textarea[class*=expand]").TextAreaExpander is not a function Source File: http://www.itrosa.se/pub/SYSTEM/jquery.textarea-expander.js Line: 94
And, according to my firebug, $(document).ready() is not called. Maybe you have to look into these two issues...
remove slideShow(); from the document.ready section like this:
<script type="text/javascript">
$(document).ready(function() {
$("a[rel=example_group]").fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
});
</script>
You probably just carried over some code from your slideshow script or incorporated it with the fancybox script incorrectly.