I currently have several drop-down menus that open with the mouse. I implement some drag-n-drop functions using draggable and droppable from jquery ui. The mouseover events for the menu don't seem to fire when dragging, is there any way to let them work?
I implemented it as follows (simplified):
$('#some_id').draggable({ helper: 'clone', opacity: 0.35, zIndex: 20000, cursor: 'move' });
$('#some_menu').live('mouseenter click', function(){jThis.find('div').addClass('opened');});
source
share