Well at first, fancybox worked. But then when I added on to the site, it completely failed and I have no clue where I went wrong.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
</script>
<script type="text/javascript" src="js/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="js/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<link rel="stylesheet" type="text/css" href="js/fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<script type="text/javascript">
$(document).ready(function() {
$(".fancyImg").fancybox();
});
</script>
<div id="About-MichaelP"><p>Website made by: <a class="fancyImg" href="#MichaelP">Michael Podsiadly</a></p></div>
<div style="display: none;">
<div id="MichaelP" class="Hide">
<h1>About Michael Podsiadly</h1>
<p></p>
</div>
</div>
Thank you in advance. And this has been getting me so tired, I can't even think straight anymore.
FancyImgwhereas your JS references.fancyImg-- pretty sure it's case sensitive. Fix that first and get back to us. Edit: You actually have inconsistent capitalization... – Mark Aug 17 '11 at 1:40<a hrefis supposed to point to the full size version of the image. I don't know why you have it linking to#1. That's also inconsistent with what you've said is happening; if the JS failed it would take you to that anchor (on the same page) not to a new page. – Mark Aug 17 '11 at 1:43