Skip to content

Instantly share code, notes, and snippets.

@jollytoad
Created December 4, 2012 08:44
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save jollytoad/4201905 to your computer and use it in GitHub Desktop.
Save jollytoad/4201905 to your computer and use it in GitHub Desktop.
Read a File using a FileReader returning a jQuery promise
function readFile(file) {
var reader = new FileReader();
var deferred = $.Deferred();
reader.onload = function(event) {
deferred.resolve(event.target.result);
};
reader.onerror = function() {
deferred.reject(this);
};
if (/^image/.test(file.type)) {
reader.readAsDataURL(file);
} else {
reader.readAsText(file);
}
return deferred.promise();
}
@stla
Copy link

stla commented Jan 9, 2017

Exactly what I needed, thank you @jollytoad !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment