I have this snippet that is on my main js file that our entire site uses
$("a[rel^='prettyPhoto']").prettyPhoto({
theme: 'light_square',
showTitle: false,
allow_resize: true
});
that problem is that on some pages prettyPhoto is undefined and causes an error in firebug so i thought i would try this
if(typeof prettyPhoto=="undefined"){
//do nothing
}else{
$("a[rel^='prettyPhoto']").prettyPhoto({
theme: 'light_square',
showTitle: false,
allow_resize: true
});
}
but this always executes to true, even on pages that prettyPhoto is available....any ideas