I'm trying to make a Drag&Drop possibility on my page.
I have to prevent the default actions for the browser, when a file is dragged into the window. Here is my code:
document.addEventListener("drop", function(e) {
e.preventDefault();
});
This works in Chrome but not in Firefox.
How do I prevent the default actions for Firefox?
* FOUND OUT *
The dragover event also has to be cancelled for firefox to listen to the drop event.
document.addEventListener("dragover", function(e) {
e.preventDefault();
});