033.xhtml (610B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Dragging two lines of 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(25,56)"> 12 <p> 13 <textarea> 14 Here is textarea 15 with selection that 16 spans two lines. 17 Drag selected text to the textarea below. 18 Selected text should be moved to second textarea once you drop it there. 19 </textarea> 20 </p> 21 <p><textarea placeholder="Drop selection here"/></p> 22 </body> 23 </html>