034.xhtml (609B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Dragging multiline text selection between textareas</title> 5 <style type="text/css"> 6 textarea 7 {width:300px; 8 height:100px;} 9 </style> 10 </head> 11 <body onload="var t = document.querySelector('textarea');t.select();t.setSelectionRange(24,58)"> 12 <p> 13 <textarea> 14 Here is textarea with selection 15 that spans 16 three lines. Drag selected text to the textarea below. 17 Selected text should be moved to second textarea once you drop it there. 18 </textarea> 19 </p> 20 <p><textarea placeholder="Drop selection here"/></p> 21 </body> 22 </html>