I need to do something similar to this:
jQuery(\'#ImgCarousel\').jcarousel({}); jQuery(\'#ImgCarouselCon\').hide();
ImgCarouselCon is the conta
Try the initCallback option:
initCallback
jQuery('#ImgCarousel').jcarousel({ initCallback: function() {jQuery('#ImgCarouselCon').hide();} });