views:

380

answers:

1

I am not sure if this is a bug - but in this example there is no way to select the text underneath the elements that can be dragged.

Same issue with form elements.

http://jqueryui.com/demos/draggable/handle.html

Any ideas?

+3  A: 

If you look at the source code for that page, you'll see that it calls

$("div, p").disableSelection();

... which explicitly disables selection on all divs and ps on the page, including those beneath the draggable elements.

Daniel LeCheminant
Source, source...thank you.
Eeyore