Leon
Leon

Reputation: 552

drag and drop upload in IE

does anyone know of any way of allowing people to upload files to the server from the desktop using drag and drop and IE. It's fine if it works only in IE9. I've found several solutions that only work with the other browser. However, internally we use IE here :-(. I would even settle for flash but it seems that swfupload doesn't support drag and drop.

Thanks

Upvotes: 4

Views: 9036

Answers (2)

David Glenn
David Glenn

Reputation: 24532

HTML5 provides a drag & drop API as well as File API.

http://www.thebuzzmedia.com/html5-drag-and-drop-and-file-api-tutorial and http://html5demos.com/file-api

Unfortunately IE9 doesn't support the File API and it's unclear how much support will be available in IE10.

Upvotes: 2

Adam Tuliper
Adam Tuliper

Reputation: 30152

As far as I understand ie9 doesnt support the File api, but only drag and drop. ie 10 will possibly support the File api.

http://www.thebuzzmedia.com/html5-drag-and-drop-and-file-api-tutorial/

although you may be able to work around this now - try: https://github.com/blueimp/jQuery-File-Upload http://aquantum-demo.appspot.com/file-upload

Upvotes: 5

Related Questions