draggable and click event
I am using a draggable, resizable DIV in a mashup. After a dragging
operation, the click that initiates the drag is evidently propagating
to a parent element, which I'd prefer didn't happen. Interestingly,
after a resize operation on the same element, the parent does not see
a click. I assume that both operations capture the mouse on mouseDown
and release it on mouseUp. How do I stop the click from being
generated after the drag?
In this case, I am using dragging to reposition and element, but
there's no drop involved.
Thanks for any help you can offer.