Start New Discussion Reply to this Discussion File Uploarding
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...
Related Article: html dom vs javascript vs ajax
is a JavaScript / DHTML / AJAX discussion thread by pareshverma91 that has 2 replies, was last updated 2 years ago and has been tagged with the keywords: ajax, dom, html, javascript, versus.
umandajayo
Light Poster
45 posts since Feb 2010
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
function Empty() {
var element = document.getElementById('file_input');
var sValue = element.value;
if (sValue == "") {
alert("ERROR: Project Image Should be Uploaded!");
element.focus();
return false;
}
return true;
}
<input type="file" name="fileField" id="file_input" />
<input type="submit" value="Send" name="Submit" onclick="return Empty();" />
sergb
Junior Poster
105 posts since May 2010
Reputation Points: 17
Solved Threads: 32
Skill Endorsements: 0
umandajayo
Light Poster
45 posts since Feb 2010
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
© 2013 DaniWeb® LLC
Page rendered in 0.0636 seconds
using 2.73MB