I have successfully implemented drag and drop file uploads for a web application using HTML 5. I listen for the drop event, then grab file data from the event.dataTransfer property.
For all intents and purposes, it works exactly like dropzone.js:
For some reason, though, I'm unable to drag and drop files from the Chrome downloads bar.
The dragenter, dragover, and dragleave events fire, but no drop event fires. This can be reliably reproduced using the dropzone.js demo website.
Why?