I am new to jQuery. I have the following code:
jQuery(document).ready(function() { jQuery(\'#carousel\').jcarousel(); });
It only appl
In recent versions of jQuery, when you have multiple id's on the page, selector will return only the first 'id' that was found in the DOM. You should use class instead.