Chrome file upload bug: on change event won’t be executed twice with the same file

If you want to upload twice, clear file input value

$('input[type="file"]').val(null);

jsfiddle test

Leave a Comment