how to check if file upload is empty jquery

Solutions on MaxInterview for how to check if file upload is empty jquery by the best coders in the world

showing results for - "how to check if file upload is empty jquery"
Thalia
28 Oct 2016
1if( document.getElementById("videoUploadFile").files.length == 0 ){
2    console.log("no files selected");
3}
4