i have a problem with the draggable/droppable

it only runs the drop function the 2nd time I drop the element.

is this happening to anyone else??

I use this:

$(".divDroppable").droppable({
                accept: ".minuteDrag",
                drop: function(ev, ui) {
                    //my code here
                }
            });

to make the droppable element
and:

$(".minuteDrag").draggable({ helper: 'clone', opacity: 0.50, zIndex:
3000,
                        cursorAt: { top: 21, left: 21 }, appendTo: "#content",
                        start: function(e, ui) {
                                //my code here
                        }
                });

to make the elements draggable

I have tried to make

alert("something");

in both places I have "my code here"
and the first time i drop the .minuteDrag element in the .divDroppable
element it doesn't run the code in the drop function

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to