How do I do it?! The jquery subforum is dead I've been at it for so long on this page: http://www.infrastructurerepairservice.com/photos.html using this lightbox: http://leandrovieira.com/projects/jquery/lightbox/ and it does not work. I did everything the tutorial says...any help?
I've never used it but it looks like you need to set a class to lightbox since that is what your jquery selector is trying to do. <script type="text/javascript"> $(function() { $('a.lightbox').lightBox{(fixedNavigation:true)}; // Select all links with lightbox class }); </script> Code (markup): That would select all anchor elements with the class = 'lightbox". Something like: <a class="lightbox" ....> Code (markup): If you were trying to select some other elements then just update your selector in your javascript at the top. Be sure to select the correct elements.