Is there a great uploader script that uses jQuery, like uploadify, but with a fallback option for when flash is not available?

I tried FancyUpload, which has this and uses an invisible IFRAME to do its stuff. The problem is, it's built on top of Mootools (conflicts everywhere because I can't change my whole codebase to use jQuery instead of $ if I use jQuery.noConflict(), and I really don't think it's a good idea to mix js libraries like that).

link|improve this question

1  
Flash fallback or no flash fallback? Your title and question conflict. – Eric Feb 10 '11 at 18:00
js libriaries are all JavaScript, IMO. – kjy112 Feb 10 '11 at 18:06
@Eric You're right, it was not very clear. I edited the title, hope it's better now. – cambraca Feb 11 '11 at 0:35
If you include MooTools >= 1.2.3 after jQuery, it will leave the $ alone. – rpflo Feb 11 '11 at 15:05
feedback

2 Answers

up vote 7 down vote accepted

http://www.plupload.com/ falls back from HTML5 to Flash, Gears, Silverlight and iFrame. It's developed for TinyMCE, so it's extensively tested and actively developed. One downside could be the size, but simply include it only on the sites that need to upload files and reduce size but excluding Gear or Silverlight support.

I am the author of FancyUpload, so believe me when I approve another uploader ;)

link|improve this answer
+1 for your hard work on fancyupload :) if only it used jQuery... – cambraca Feb 11 '11 at 16:56
feedback

Sebastian Tschan just released a great plugin called jQuery File Upload that will likely suit your needs.

Demo: http://aquantum-demo.appspot.com/file-upload

Repos: https://github.com/blueimp/jQuery-File-Upload

link|improve this answer
Awesome. Good find. – a paid nerd Feb 14 '11 at 21:32
Much appreciated! – Orolin Mar 23 '11 at 11:43
Just what I was looking for and then some. – emragins Nov 9 '11 at 20:03
awesome project – jujule Feb 20 at 20:33
feedback

Your Answer

 
or
required, but never shown

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