How to enable dblclick event on elements which was binded with JQuery UI Selectable plugin?

后端 未结 6 829
感动是毒
感动是毒 2020-12-19 06:21

In my case,I have an UL with JQuery UI Selectable plugin applied,but at the same time ,I want the item witch was binded with selectable plugin was

6条回答
  •  忘掉有多难
    2020-12-19 06:43

    In jQuery you can link events, like this:

    $( "#selectable" ).selectable().dblclick();
    

    Bit I'm not sure this will work, because both events are click events.

提交回复
热议问题