I have this code:
$(document).on('change', 'input[type=file]', function (e) {
$.each($(e.target)[0].files, function (i, file) {
// how to get byt
});
});
how to get the bytes of the file too?
I have this code:
$(document).on('change', 'input[type=file]', function (e) {
$.each($(e.target)[0].files, function (i, file) {
// how to get byt
});
});
how to get the bytes of the file too?