hy users
I try to get the path of a file via html5 js
I try:
jQuery("#pfad").change(function(evt){
var files = evt.target.files; // FileList object
// files is a FileList of File objects. List some properties.
for (var i = 0; i < files.length; i++) {
alert(files[i].path);
}
but path isn't a attribute of this file object.... what can i do?