I use \"OWL Carousel\" jQuery plugin (http://www.owlgraphic.com/owlcarousel/) for in my small project.
I create small script that draggable via this plugin. now i wa
I had the same problem and just figured it out:
Add a class to the items you want to disable (i.e. "disable-owl-swipe") and stop event propagation on touchstart and mousedown, so the parents (the owl carousel wrappers) don't receive the event and therefore don't swipe.
HTML:
Item-1.1
Item-1.2 NOT Draggble
Item-1.3
Item-2.1
Item-2.2 NOT Draggble
Item-2.3
Item-3.1
Item-3.2 NOT Draggble
Item-3.3
JS:
$(".disable-owl-swipe").on("touchstart mousedown", function(e) {
// Prevent carousel swipe
e.stopPropagation();
})
Hope that helps!