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>
.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