views:

278

answers:

1

i feel i have done everything right but i cannot get lightbox to work at all. It is also coming up with the error that jQuery is not defined in the jQuery file. file is http://www.lotuswebdzine.com/lotusweb/portfolio.php

+6  A: 

You are including fancybox before jQuery:

<script type="text/javascript" src="js/jquery.fancybox-1.2.1.pack.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>

Switch the two and it should work fine.

Paolo Bergantino
omg..how stupid!! thank you..i have tried so many things. why is it always the simple thing that you miss
you should check this question as answered
Moak