Question

I have a file upload control <input id="File1" type="file" /> in my page... How to check an input type="file" has a file or not using jquery on click of a button upload?

Was it helpful?

Solution

if (jQuery('#File1').val()) { /* There are files */ }

OTHER TIPS

You should use "required" instead of JQuery. By just one attribute it'll check input=file has file or not. Example:

<input type="file" required/>
$('#upload').bind('click', function(e){
   if( $('#File1').val() != ""){
       // file selected
   }
   else{
       // no file selected
   }
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top