lisak
lisak

Reputation: 21981

Is there a Javascript support library for html5 file API and upload?

until now I was using flash based swfupload and its swfupload.js which provides users with callbacks from flash and a possibility to set it up.

I was wondering if there is anything like this for HTML5 File API. I'm asking before I make it from scratch myself. I don't want to reinvent a wheel when there might be a good library out there already.

Upvotes: 8

Views: 4839

Answers (4)

Tom
Tom

Reputation: 8127

Plupload:

http://www.plupload.com

Has a total of 6 runtimes.

Upvotes: 0

ofi
ofi

Reputation: 384

And another one ;-)

http://code.google.com/p/html5uploader/

Upvotes: 0

Stefaan Colman
Stefaan Colman

Reputation: 3705

I use valums file uploader. This uploads using ajax by default and provides a fallback (hidden iframe) if the browser doesn't support ajax uploads.

http://valums.com/ajax-upload/

The complete upload widget uses the File API for drag-and-drop support.

Upvotes: 1

John Green
John Green

Reputation: 13435

I've played with this in the past: http://aquantum-demo.appspot.com/file-upload

Seemed reasonable for what I was doing.

Upvotes: 3

Related Questions