hi friends
how to check file upload control empty or not in javascript?
I m try to this way but it is not working
function Empty(){
var sValue.value = document.getElementById('file_input');
if(sValue == ""){
alert("ERROR: Project Image Should be Uplorded..!.");
sValue.focus();
}
}
<input type="file" name="fileField" id="file_input" >
<input type="button" value="Send" name="Submit" onclick="Empty()/>
thank you...