How to get base64 of the files uploaded by Blueimp Jquery File Upload?
I want to do something like this:
$('#fileupload').fileupload({
url: uploadUrl,
dataType: 'json',
add: function (e, data) {
console.log(data.files[0].getBase64());
Is it possible?
Thanks!