Anil Namde
Anil Namde

Reputation: 6608

What is the status of HTML 5 File API today in differnt browsers?

I am currently working on the File API. After initial investigation found that the Chrome, Firefox (new versions ) have good support for this. However IE, Opera have not implemented it and Safari have partial support for this. Can some one please let me know

  1. Do opera and IE support the File API ? Is it in plan for future release?
  2. Safari says to have partially implemented the File API. How much this partial this is implemented ? Have they implemented XHRHttpRequest.send(File) method ? So that we can send the file object to server.

My understanding is that the Chrome and Firefox are only two browsers today to have support for the drag drop file to web browsers feature. I that right ?

Upvotes: 3

Views: 4769

Answers (3)

chubbsondubs
chubbsondubs

Reputation: 38751

Here is all the gory details in an "easy" to digest way. Well nothing about HTML5 support is really easy, but this is the best source for version information:

http://caniuse.com/fileapi

Upvotes: 3

dkris
dkris

Reputation: 1280

For status on File API and any other HTML5 API's keep a tab on HTML5 Readiness

Upvotes: 0

enam
enam

Reputation: 1177

Yes, File API successfully implemented in WebKit browsers as of today.In Gecko it is partially implemented and for other browser it is not implemented yet. You can check detail in "Comparison of layout engines (HTML5)".

Upvotes: 7

Related Questions