Title: context menu on draggable object [Solved] Post by: devnull on March 14, 2015, 06:16:38 PM I am trying to setup a context menu on a list item which is draggable.
Problem is the mousedown event is triggered in onBeforeDrag before the contextmenu() event and therefore I cannot prevent the drag, and fire the menu; Code: $('ul.ulbar li').on('contextmenu', function(e){ Title: Re: context menu on draggable object Post by: devnull on March 14, 2015, 06:31:41 PM OK, I managed to solve this by using the which attribute:
Code: ('ul.ulbar li ').draggable({ This might be useful to others. |