You are here: irt.org | FAQ | JavaScript | Bugs | Q1455 [ previous next ]
It is a known bug, and you are lucky, it has a workaround:
<script language="JavaScript>
function showFile(theForm) {
theForm.file1.focus();
theForm.file1.blur();
Test = '' + theForm.file1.value;
alert(Test);
}
//--></script>
<form name=uploadform enctype="multipart/form-data">
<input type="file" name="file1">
<input type="button" value="Click" onClick="showFile(this.form)">
</form>