Does anybody know how they do multi file upload using only Javascript only and still show smooth progress bar for each file? I've seen gmail, hotmail and amazon s3 do it.
3 Answers
I've used plupload and swfupload. Both provide SWF multiple file upload methods with progress bars but plupload also provides HTML5, Silverlight, BrowserPlus alternatives and a plain form fallback. Both are quite configurable but I use plupload for the extra levels of browser/plugin support.
NOTE: plupload site appears to be down, I'd assume this is temporary as the project is still active.
Comments
you can use jquery with HTML5 to do this , See this example http://code.google.com/p/jquery-html5-upload/source/browse/trunk/example.html
1 Comment
SpliFF
Wouldn't have been my first choice. you're still dependent on javascript/html5 but you don't get the benefit of SWF/Silverlight fallback so you've basically ruled out IE entirely.