Boy, this one has me totally stumped. I have a multipart form with 4 file inputs. I need to blank out the values based on another form action. While I can see the value, I can't set it to "".
HTML statement:
<input type="file" name="file1" size=80>
Javascript to clear it out:
document.getdata.file1.value = "";
This won't work. I have seen some examples online where you remove the form element and then add a new one, but that doesn't work right because it places the new element outside of the table structure.
Thanks in advance,
Jerry Scannell
HTML statement:
<input type="file" name="file1" size=80>
Javascript to clear it out:
document.getdata.file1.value = "";
This won't work. I have seen some examples online where you remove the form element and then add a new one, but that doesn't work right because it places the new element outside of the table structure.
Thanks in advance,
Jerry Scannell