I'll try to add item on owl-carousel dynamically, using the jquery function addItem, but don't work, and on the console I have: "addItem is not a function".
var content = "<div class='item item-desktop' style='background: url("+urlimage+"); background-size:cover; background-position: center'>";
var carosello=$("#owl-carousel-desktop");
var dataCarosello=carosello.data('owlCarousel');
dataCarosello.addItem(content);
There is alternative ways to load dinamically item on owl carousel?
Try adding this after your initialization of
carosello
:All in all leaving you with the following: