I am trying to implement the jQuery plugin, prettyPhoto, on my page. I used the example from this page:

http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/#!prettyPhoto

When I use the rel="prettyPhoto[pp_gal]" I get an error message about wrong syntax:

Error: Syntax error, unrecognized expression: [rel*=[pp_gal]

What can be the issue?

I have installed the prettyPhoto jQuery plugin in my project. I have put this script in the page:

 $(document).ready(function () {
      $("a[rel^='prettyPhoto']").prettyPhoto();
 });

And I used this HTML in order to see the images, the path is localhost since I am trying just to make it work for now:

<a href="../GalleryImages/ScreenClip[1].png" rel="prettyPhoto[pp_gal]"><img src="../GalleryImages/ScreenClip[1].png" width="60px" height="60px" alt="Nice building" /></a>

<a href="../GalleryImages/1.jpg" rel="prettyPhoto[pp_gal]"><img src="../GalleryImages/1.jpg" width="60px" height="60px" alt="Nice building" /></a>
link|improve this question

76% accept rate
1  
How could anyone possibly be able to assist without seeing any of your code? See: tinyurl.com/so-hints – Sparky672 Feb 1 at 6:53
this is more clear now? – Moran Monovich Feb 1 at 7:08
IMO, the error is as if you don't have jQuery or the plugin properly included. Did you include jQuery before the prettyPhoto plugin? Are you then invoking .prettyPhoto() after that? They seem like obvious questions but nobody can see that part of your code. It's almost like you did not read the link in my first comment. – Sparky672 Feb 1 at 7:13
yes, the JQuery function is before the link tags. i have acted according to the instructions on the developer site. this isn't something i have decided to do on my own, furthermore i have posted a question about it also in the dedicated forum, but i didn't get any answers. – Moran Monovich Feb 1 at 7:32
prettyPhoto works fine on my site. But with what little you've posted, we're at a stalemate. – Sparky672 Feb 1 at 7:36
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

It seems the error is related with PrettyPhoto 2.5.x and jQuery 1.3.2 - that version of prettyphoto does not work with newer versions of jQuery.

So if you want prettyPhoto 2.5.x to work, you have to use jQuery 1.3.2.

link|improve this answer
finally thanks for your help. – Moran Monovich Feb 6 at 8:07
feedback

Your Answer

 
or
required, but never shown

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