Draggables & Sortables - selecting text

Draggables & Sortables - selecting text


Hi all,
Using the jquery UI draggable and sortable.
I'd like to be able to select and copy the text with the mouse, within
the draggable and sortable divs.
found a good hint on using the draggable handle, attaching it to a
title div within the draggable.
$('#my_dragable').draggable({
    handle : '#my_dragable_title'
});
which stops the entire div moving when i try to select the text - but
still does not let you select the text with the mouse.
so next idea - create an inner div and place all the text content in
it -
$('#my_dragable_inner').hover(function() {
     $('#my_dragable').draggable("disable");
    }, function() {
     $('#my_dragable').draggable("enable");
    });
Firebug shows it's adding disable, but the text is still not
selectable with the mouse.
anyone got any good ideas how i can work around this ?
cheers
stuart lamour