I am writing an application that's supposed to support HTML5 drag/drop API for file, much like the on described here. I would like to perform a programmatic check on whether the browser support this kind of madness :) A solution that works for now is checking whether the browser provides a FileReader class, like this:

  if (typeof(FileReader) == "undefined") {
    $("#dropbox").hide();
  } else {
    // connect events
    $("#filebox").hide();
  }

But it is obviously not a correct one (I don't use that class at all).

Any ideas?

link|improve this question

25% accept rate
feedback

4 Answers

up vote 9 down vote accepted
if ("files" in DataTransfer.prototype) {...}
link|improve this answer
it needs prototype.js though – konryd Feb 23 '10 at 22:04
11  
No. prototype is a core JS programming construct. en.wikipedia.org/wiki/JavaScript – dshaw Feb 23 '10 at 22:38
1  
@konryd See mckoss.com/jscript/object.htm for a better exploration of of JS object prototypes. – dshaw Feb 24 '10 at 2:19
Not sure why but following code is not working on Chrome if ("files" in DataTransfer.prototype) {alert('Drag Drop file support is there');} It says ... Uncaught ReferenceError: DataTransfer is not defined. Can you please help... – Anil Namde Jan 27 '11 at 6:30
2  
webkit doesn't expose the DataTransfer object, see github.com/Modernizr/Modernizr/issues#issue/57 – meleyal Mar 30 '11 at 11:20
feedback

Checking for the existence of FileReader is the correct way to go about this. FileReader is an official part of the File Api. I would combine this with Modernizr. Drag and Drop support is slated for release 1.2. You should be able to grab the source on GitHub and start working with this now. http://github.com/Modernizr/Modernizr/blob/master/modernizr.js

if (!!FileReader && Modernizr.draganddrop) {
  // sexy drag and drop action
} else {
  // no drag and drop support available :(
}

If you haven't seen Dive into HTML5, you should definitely check out Mark Pilgrim's suggestions on detecting HTML5.

link|improve this answer
1  
I'm not sure this would work. It checks for presence of attributes ondrag, ondrop, ondragleave etc. in a div object. This works in, say Chrome, but still doesn't let you drag-and-drop files into a website. – konryd Feb 22 '10 at 15:54
reader = new FileReader(); if (reader && Modernizer.draganddrop) {}... Need to test that out. – dshaw Feb 22 '10 at 16:10
Updated my suggestion to include check for the FileReader object, though if(!!FileReader) {} might be sufficient. :) I tested this in FF3.6 and Chrome and it works. – dshaw Feb 22 '10 at 16:31
Just realized that as I was thinking this through, you had mentioned that you thought evaluating for the presence of FileReader was incorrect. Even if you aren't going to be using the native implementation, FileReader is official spec and detecting for support of that feature is the right way to go about this. dev.w3.org/2006/webapi/FileAPI/#filereader-interface – dshaw Feb 22 '10 at 17:10
One last comment: If you're going to roll your own FileReader, you should make sure you implement the official interface. w3.org/TR/FileAPI/#dfn-filereader This way, you'll be able to drop your implementation once the FF implementation works the way you need it to work and other browsers begin to implement it. – dshaw Feb 22 '10 at 17:20
show 5 more comments
feedback

I had to make a slight change to dshaw's answer for support in IE8:

if (!!window.FileReader && Modernizr.draganddrop) {
  // sexy drag and drop action
} else {
  // no drag and drop support available :(
}

You can try it out here

link|improve this answer
You need !!window.FileReader in IE9 also. – Detroitpro Jul 26 '11 at 4:43
feedback

This code fails in IE8. This would probably be better:

if (typeof(FileReader) === 'function' && Modernizr.draganddrop) {
  //sexy drag and drop action
} else {
   //no drag and drop support available :(
};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.