ui draggable live event

ui draggable live event


Hi, I was wondering if somebody could point me in the right direction
for attaching draggable ui as a live event.
I have divs that need to be draggable but can also be created &
removed as well. At present I have:
$('.panel_button').live('mousemove',function(){
        $(this).draggable({containment:"#skeyb_design",distance:10,grid:
[50,50],delay:10,zindex:9,
            start: function(){
            },
            stop: function(){
            },
});
This does work & I get the result I need, but am worried that it is
not an ideal solution, there are also live events attached to the
double click event of the div as well.
Many thanks in advance for any advice that can be given.