JR.
JR.

Reputation: 473

JavaScript only file uploader with progress bar

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

Answers (3)

Edgar Villegas Alvarado
Edgar Villegas Alvarado

Reputation: 18354

An excelent plugin (if not the best) is Uploadify

http://www.uploadify.com/

Hope this helps. Cheers

Upvotes: 1

SpliFF
SpliFF

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

Jayantha Lal Sirisena
Jayantha Lal Sirisena

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

Related Questions