If I left-click on a jquery draggable element, the mousedown event never reaches my custom handlers. However, if I left-click, the mousedown event DOES reach my other handlers. Any idea as to what might be causing this?
If I left-click on a jquery draggable element, the mousedown event never reaches my
Share
It is happening because jQuery is stopping propagation of the event to prevent bugs that happen because of it. One reason is so it doesn’t drag multiple draggable items at once in IE.