vote up 5 vote down star
3

Is there a nice tidy jQuery plugin that allows including a single JS script then using a simple snippet to enable a form? Something like this:

$j('#MyForm').enableDragDropUploads('.upload-area')

With the upload target being the action of the form.

Any solution must not prevent a regular file field from being usable (using traditional browse method).

I only need one file at a time, though of course having the option for multiple isn't a bad thing.

I've found a couple of drag-drop upload examples:
http://www.appelsiini.net/2009/10/drag-and-drop-file-upload-with-google-gears http://www.appelsiini.net/2009/10/html5-drag-and-drop-multiple-file-upload

But the code there isn't setup as a plugin. It's probably not too difficult to change it, but also no point doing so if someone else has already done that work and is simply evading my Google searches.

I'm ideally looking for a pure HTML5/jQuery solution.
A Google Gears one is acceptable, but a Flash solution is not.

flag

41% accept rate
That solution Only works in the Bleeding edge version of firefox. It has no support outside of firefox 3.6 currently. As that is the case you're unlikely to find a jQuery plugin for it and you'd most likely need to make it yourself. – Jojo Nov 3 at 0:45
1  
Bah. Alpha version has been out a couple of months, that should be long enough. :/ I guess I'll go create the plugin myself then. Will answer the question once I've finished it. – Peter Boughton Nov 4 at 0:00

2 Answers

vote up 2 vote down

Yes, i wrote it some time ago http://kurapov.name/rus/technology/drag%5Fdrop%5Ffileupload%5Fhtml5/

link|flag
vote up 0 vote down

In general, you can't do that -- it isn't something HTML can support. Most drag and drop file uploaders use Flash.

However, HTML v5 does support what you're looking for. The bad news is, it isn't supported by most browsers -- not even the recently released Firefox 3.5.

I'm afraid you're just out of luck unless you want to use Flash or Google Gears or something.

link|flag

Your Answer

Get an OpenID
or

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