Did you make sure the jquery library is on top of the fancy box jQuery library?
see for example this one:
this is not true
<script src="../../FancyBox/Fancybox.js" type="text/javascript"></script>
<script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
this is the right way
<script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="../.. /FancyBox/Fancybox.js" type="text/javascript"></script>
source
share