Search code examples
javascriptinternet-explorerinputinternet-explorer-8fileapi

How can I get file from input in IE8?


How I can get file in IE(8) like this:

<input id="files" type="file">

<script>
    var file = this.files[0]; //(FF, Chrome)
</script>

for uploading?


Solution

  • You can't.
    IE8 doesn't support this feature.