I have seen this asked and followed everything but it simply doesnt work for me

Could anyone tell me if they see anything wrong here? Im not very good at this yet, I am sure it must be something simple.

My goal is to display a popUp once the page is loaded.

Any help is appreciated!

<script type="text/javascript" charset="utf-8">
        $(document).ready(function(){               
            $("a[rel^='prettyPhoto']").prettyPhoto();

            function showPopUp() {
                var where = "images/popup.jpg";
                var title = "";
                var comment = "";           

                $.prettyPhoto.open(where, title, comment);
            }

            showPopUp();

        });
    </script>

=== EDIT ===

Solution was found here: isSet is not defined

Its been fixed in version 3.0.3.

link|improve this question

61% accept rate
1  
what is the error (if any) that there is in the console? – Neal Aug 15 '11 at 21:40
Hmm good question, let me figure out how to check that, excuse me I am new to this. – Stefan Aug 15 '11 at 21:54
I see "isSet is not defined" – Stefan Aug 15 '11 at 21:55
1  
and there you go. you just solved it -- yay – Neal Aug 15 '11 at 21:56
Yep just did thanks for pushing to me use this console. As soon as I saw this error it gave me another search to run on google and I immediately found the solution. – Stefan Aug 15 '11 at 22:00
show 2 more comments
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.