I used ajax to fill an initially empty DIV and created rcarousel for it when ajax done as below.
I checked the generated content and it seems lacking
and style attribute for each item. rcarousel is generated and working but it "stutters" when displaying the items because of the lacked wrapper and style attributes.
I used ajax to fill an initially empty DIV and created rcarousel for it when ajax done as below.
I checked the generated content and it seems lacking
$.ajax({ ... success: function(data){ $("#carousel").append(data); }
}).done(function() { $("#carousel").rcarousel({ ... }); });