disable dragging in specific element (Item) in “Owl carousel” - jquery

前端 未结 2 1674
南方客
南方客 2021-01-12 15:27

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

2条回答
  •  再見小時候
    2021-01-12 16:17

    I have the solution!

    Just add the elements you want to exclude in "NDElement"

    $( NDElement ).mousedown(function() {
            $(".owl-wrapper").attr("class","dontdragg"); 
    });
    $( document ).mouseup(function() {
            $(".dontdragg").attr("class","owl-wrapper"); 
    });
    

提交回复
热议问题