Hi, Can anybody help telling me ,how to fetch value from <input type=file> in javascript.
Thanking you in advance, Girish
Imagine this code:
<FORM NAME="Form1"> <INPUT TYPE="TEXT" NAME="txtBox"> </FORM>
To get the value in JS you use:
document.Form1.txtBox.value
Hope this helps
fLIPIS