I’m trying to get information about the file being uploaded in an HTML input with the following code:
$(document).ready(function() {
$('#btn').on('click', function() {
file_size = $("#my_file").files[0].size;
alert(file_size);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
<input id="my_file" type="file" name="my_name" />
<input id="btn" type="button" />
</form>
But it doesn’t work, and the console returns: $("#my_file").files is undefined
$("#my_file")is a jQuery object, and a jQuery object does not have a propertyfiles…To get the DOM element out of jQuery, do
As an extra note, if you have not selected any file,
($("#my_file"))[0].files[0]gives youundefinedand($("#my_file"))[0].files[0].sizewill throw error.You are recommended to add a check…