I am new to jQuery. I have the following code:
jQuery(document).ready(function() { jQuery(\'#carousel\').jcarousel(); });
It only appl
In this situation you should use class. You can not use id. Otherwise you can try the below code.
jQuery('ul').jcarousel();