I have an owl carousel that doesn't fire events on the cloned items. So, as solution people propose to move the event from direct target to its parent one:
from:
$('#multiple-carousel .item').click(function () {
alert("click");
});
to:
$('#multiple-carousel').on('click', '.item', function () {
alert("click");
});
Could I similarly change from my code:
<div id="multiple-carousel">
<div class="item" ng-click="myClick($event)">...</div>
</div>
to something like:
<div id="multiple-carousel" ng-click[???".item"???]="myClick($event)??">
<div class="item" >...</div>
</div>