Here's an example of drag&drop images (provided from course "HTML5 power workshop" by Andy Olsen) : http://aorbaroquethrash.com/dragdrop/
You have to drag an image from your desktop to the yellow square.
It is working in chrome, but not firefox, why ?
There's a similar post : drag and drop not working in firefox It says to use "dataTransfer.setData", but I don't think it applies to my example.
In my example I use
var allTheFiles = event.dataTransfer.files;
...
PatricK