I am using the javascript Contentflow in an image gallery. I have the following function to open the images in a lightbox (PrettyPhoto) when the image is "active", or centered in the contentflow.
currentLink : '.item.active',
currentImg : '.item.active .content'
function initCBox(){
var img1 = $(select.currentLink).not('.folder').attr('href');
var label = $(select.currentImg).attr('alt');
var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
if (val.nodeType === 3) {
return val.data;
}
}).join('');
$.prettyPhoto.open(img1,label,desc);
}
My gallery also contains thumbnails that link to another folder of images that open in a contentflow. These I do not want to open in a pretty photo lightbox, but open the folder. The html of the images and folders:
<a class="item" href="image.jpg"><img class="content" src="image.jpg" alt="Image"/><div class="caption">Image</div></a>
<a class="item folder" href="folder/index.html"><img class="content" src="folder.png" alt="Image Folder"/><div class="caption">Image Folder</div></a>
The problem lies in my .not('folder') statement. I get an error in Prettyphoto that "event is undefined" when the folder link is clicked. Also, if I click the images first, the lightbox works but if I click the folder first then the images, the lightbox fails. I have tried bind and unbind a click event to no avail. Any help or direction would be appreciated!