Drag and drop to input file does not work in IE11

Can someone answer me: why does the drag and drop box work fine in chrome and firefox but not work in IE11? IE11 just opens files when I drag and drop them from the desktop.


IE Version: 11.545.10586.0


HTML:

<input type="file" />

Example: https://jsfiddle.net/3hc2grcp/ .

+4
source share
1 answer

Internet explorer does not support the html5 drag and drop API. so you need some kind of library extension. you should use a javascript library like Dropzone.js. Dropzone.js supports dragging and dropping files (multiple files) even in Internet Explorer 10+ and 11.

Please visit the following URL here .

0
source

Source: https://habr.com/ru/post/1652048/


All Articles