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

link|improve this question

74% accept rate
feedback

2 Answers

Try this:

if (typeof $.fn.prettyPhoto == "function") {
    // we have prettyPhone on the page
}
link|improve this answer
You could even just do if ($.fn.prettyPhoto), though it's a little looser. – nrabinowitz Oct 12 '11 at 20:53
What is the $.fn. and can you use the $.fn. on most jquery elements to ensure they are available – Matt Oct 12 '11 at 20:56
feedback

if you do a console.log(prettyPhoto) on a page that you know has prettyPhoto, what does it say it is? an object?

If so, then you do

if(typeof prettyPhoto === 'object'){
    //do your stuff here.
}
link|improve this answer
2  
what dfsq said should actually be right – Senica Gonzalez Oct 12 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.