008.xhtml (617B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Cross page drag and drop with text/uri-list data</title> 5 <style type="text/css"> 6 div[ondragstart] 7 {width:40px; 8 min-height:40px; 9 margin-top:20px; 10 padding:40px; 11 color:white; 12 background-color:navy;} 13 </style> 14 </head> 15 <body> 16 <div draggable="true" ondragstart="event.dataTransfer.effectAllowed = 'copy';event.dataTransfer.setData('text/uri-list','data:text/plain,PASS');window.location = '008-1.xhtml'"/> 17 <p>Drag blue box. You should be redirected to the new page and be able to drop it there.</p> 18 </body> 19 </html>