I am new to jQuery. I have the following code:
jQuery(document).ready(function() { jQuery(\'#carousel\').jcarousel(); });
It only appl
You can't have more than one element with the same Id, that's why is not working. You should use class="caroussel" instead.
class="caroussel"
jQuery(document).ready(function() { jQuery('.carousel').jcarousel(); });