http://jsfiddle.net/VjeTk/78/
Using Plupload.com File Downloader
I need a preview image after selecting a file for html5 runtime browsers.
Therefore, I add to the file Add Event
uploader.bind('FilesAdded', function(up, files) { for (var i in files) { $('filelist').innerHTML += '<div id="' + files[i].id + '">' + files[i].name + ' (' + plupload.formatSize(files[i].size) + '<img src="' + SOMEHOWLOCALSOURCEOFIMAGE +'"/>') <b></b></div>'; } });
The problem is that Plupload does not deliver a regular binary file object like html. Thank you for your help.
Email
source share