drag and drop - jquery draggable and mouseover -


i have dropdown menus open on mouse over. i'm implementing drag-n-drop features using draggable , droppable jquery ui. seems mouseover events menus not fire when dragging, there way allow them work?

i've implemented 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');}); 

i found out logical problem. once start dragging element, sticks under mouse pointer.. hence, it'll hover on current element time!!

a (not pretty) fix set cursorat option mouse pointer outside of draggable element:

$('#some_id').draggable({       cursorat: {left: -10, top: -10} }); 

it nicer if there way somehow pass mouse pointer underneath element being dragged, far haven't found solution that.

hope helps bit!


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -