javascript - Textarea Selected Text Drag and Drop Copy -
i want users of application able highlight text textarea
, drag , drop text input
.
i want change default behavior (the user shouldn't have hold down ctrl or alt) copy text rather being moved textarea input.
i've tried using jquery draggable
, droppable
. see how work if div
or static static selected , helper clone used, don't know how random text selection in textarea
.
you try following hack:
- on select create transparent
div
, copy selected text it, 'window.getselection' - make div draggable , droppable
- on drop content
div
, populateinput
field , clear div
Comments
Post a Comment