Reputation: 473
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.
Upvotes: 1
Views: 3608
Reputation: 18354
An excelent plugin (if not the best) is Uploadify
Hope this helps. Cheers
Upvotes: 1
Reputation: 39014
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.
Upvotes: 3
Reputation: 21376
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
Upvotes: 1