I have to do something really stupid here, but for a while I hit my head about it and I could not find what was wrong.
On this page: http://ww2.accudata.com/
I am trying to implement jCarousel and I keep getting this error:
jQuery ("# mycarousel"). jcarousel is not a function
Here is what I have in the title:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js?ver=1.6.4"></script> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery.jcarousel.min.js"></script> <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/js/skins/carousel/skin.css" /> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel({ }); }); </script>
So, as far as I can tell, I load all the scripts in the correct order, and I confirmed that they are all there. So why does he say that this is not a function?
source share