I also had this problem. To handle this, I added a box next to the browse button, and then added the text of the change as follows:
$("#fileUpload").change(function (e) { var path = this.value; this.form.field.value = "..." + path.substring(11, path.length); });
a substring was added as it added \ fakepath \ to the beginning of the path name.
source share