Thanks for your answer! I’ve tried, but with no success, maybe I made a mistake, as I’m not used to jQuery.
Here was the code in my footer:
<script type=”text/javascript” src=”<?php bloginfo(“template_url”) ?>/js/jquery.js”></script>
<script type=”text/javascript” src=”<?php bloginfo(“template_url”) ?>/js/caroufredsel.js”></script>
<script type=”text/javascript”>
$(‘#carrousel’).caroufredsel({
[…]
},
pagination: ‘#pagination’
});
</script>
I replaced by that:
<script type=”text/javascript” src=”<?php bloginfo(“template_url”) ?>/js/jquery.js”></script>
<script type=”text/javascript” src=”<?php bloginfo(“template_url”) ?>/js/caroufredsel.js”></script>
<script type=”text/javascript”>
$j = jQuery.noconflict();
$j(‘#carrousel’).caroufredsel({
[…]
},
pagination: ‘#pagination’
});
</script>
Is it correct?
Thanks for your help!