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
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---