Hi,
I cannot get the full physcial path of a selected file in Firefox. Code below works fine in IE. Is there other way to get full path in Firefox as well? Thanks
function getPath() {
alert (document.formUpload.file.value);
}
<form name="formUpload" enctype="multipart/form-data">
Filename:<input type="file" name="file" id="file" onChange="getPath();" />
<input type="submit" name="submit" value="Submit" />
</form>