1

I am testing three different browsers, chrome, firefox and safari.

if (window.File && window.FileReader && window.FileList && window.Blob)
{
       //check whether browser fully supports all File API 
}

It returns true for chrome and firefox.. but it does not return true for safari.

Does safari support File API?

Juni Brosas
  • 1,425
  • 2
  • 14
  • 24
  • think similar thread? http://stackoverflow.com/questions/7734150/what-to-use-instead-of-filereader-for-safari – gan gary Jun 10 '14 at 08:13

1 Answers1

1

According to caniuse.com, yes it supports, but be careful about previous versions.

alpakyol
  • 2,402
  • 2
  • 29
  • 35