The data property references an array of strings for events of objects that have been dragged and dropped.
Each string in the array contains a URL representing the dropped object.
<html> <head> <title>Example of the event.data property</title> </head> <body> <script language="JavaScript"> <!-- function handleDragDrop(evnt){ tmp = new Array(); tmp = evnt.data; alert("The URL for the dragdrop object is: " + tmp); return true; } window.ondblclick = handleDragDrop; --> </script> <br><br> Drag and drop an object to the browser. </body> </html>