views:

30

answers:

0

I've always used fancybox before but now it keeps saying it isn't a function and of course my links to the images don't show up in the lightbox like it should. Here is some source:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;

<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript" src="/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
<script type="text/javascript" src="/fancybox/jquery.mousewheel-3.0.2.pack.js"></script>

<script type="text/javascript">
    $(document).ready(function() {
       $("a.group1").fancybox(); });
</script>

And for a few examples of my grouped image links here:

<a href="images/Jiu Jitsu.jpg" class="group1" rel="grouped">
    <img src="images/Jiu jitsu.jpg" id="Jiujitsuslice"   />
</a>

<a href="images/Chris champ.jpg" class="group1" rel="grouped">
    <img src="images/Chris champ.jpg" id="chrisslice"   />
</a>

<a href="images/Knuckles up.jpg" class="group1" rel="grouped">
    <img src="images/Knuckles up.jpg" id="knucklesslice"   />
</a>

I haven't been able to get colorbox, fancybox or slimbox to work... I have been able to get fancybox working before so this is really weird. How can I fix this problem?