I am using ContentFlow for an image gallery and when the image centers in the flow it becomes ".active". I have the following function to enable a PrettyPhoto lightbox when a thumbnail image becomes ".active" but I need to exclude links to additional image galleries when the the link thumbnail ( which is a folder) becomes active.

This is my current code for PrettyPhoto:

currentLink         : '.item.active',
currentFolder       : '.folder',
currentImg          : '.item.active .content'



function initCBox(){
var img1 = $(select.currentLink).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);

}

I am trying to use not to exclude the folders as such:

function initCBox(){
var img1 = $(select.currentLink).not('currentFolder').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);

}

It's not working so any help would be appreciated.

link|improve this question

80% accept rate
Are you getting any JavaScript errors? How did you declare the variables? – Emil Nov 20 '11 at 1:47
Sorry, I was vague on that! The variables are declared within the Contentflow function as above: currentLink : '.item.active', currentFolder : '.folder', currentImg : '.item.active .content' and the jQuery function is within that. – Mike Nov 20 '11 at 1:51
My code does not throw errors in Firebug – Mike Nov 20 '11 at 1:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.