draggable

draggable


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