I am using jquery 1.8.2 and caroufredsel 6.2.1. The js files are added to the page. In my document.ready function, I am calling $('#carousel1').carouFredSel() where carousel1 is one of many carousels on the page.
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$('#carousel1').carouFredSel();
});
</script>
The HTML is copied below (${imgName} below is a valid image):
<div id="c-carousel">
<div id="wrapper">
<div id="carousel1" class="carousel1">
<img src="${imgName}" width="150"/>
</div>
</div>
</div>
Any ideas as to what I am missing in order for me to ensure that I can see the slider on the html page? Any helpful suggestions would be quite welcome. Thanks in advance