This is the uploaded form.
There is no jQuery function for this. You have to access the DOM element and check the files property.
document.getElementById("image_file").files[0];
Or
$('#image_file')[0].files[0]