I am using jcarousellite on one of my projects. This is the code I have so far.
$(".carousel").jCarouselLite({
btnNext: ".next",
btnPrev: ".prev",
speed: 700,
visible: 8,
afterEnd: function(a){
// set the now first element to the active video
$(a[0]).addClass("active");
},
});
Only problem is that my list items have not been generated until
$(document).ready(function(){
// generate list items
});
I would like to generate my carousel after the list items have been loaded. Can I use jQuery's .live() for this? Any ideas?