-
Notifications
You must be signed in to change notification settings - Fork 59
Description
I am having an issue with trying to get the FileReader working properly. I have some code that is kinda working, and by that I mean when I log the file in FireFox it works somewhat. It shows me the file information but not the data in the file.
Also debugMode set to true doesn't do anything for me. It doesn't show me any debug information. Below is some test code I'm using. Please let me know if my example is wrong. In IE9 it just gives me errors that the target.files isn't populated at all. From some of the research I've done in the issues section here it refers to something called: FileAPIProxy? But when I try to follow that It is undefined.
$("#fileToUpload").fileReader({
filereader: '/js/filereader/filereader.swf',
debugMode: true
});
$("#fileToUpload").on("change", function (e) {
console.log( e.target.files );
var file = e.target.files[0];
var fileReader = new FileReader();
console.log( file );
var d = fileReader.readAsDataURL( file );
console.info( d );
});