Search code examples
javascripthtmlfilelist

Is it possible to display the contents of [object FileList] in JavaScript?


if(this.all.length > 0){
    for(var k=0; k<this.all.length; k++){               
        alert(this.all[k]);  // it alerts [object FileList] 
        var file = this.all[k];
        this._uploader(file,0);
    }
}

Solution

  • if(this.all.length > 0){
        for(var k=0, len = this.all.length; k < len; k++){               
            console.dir(this.all[k]);  // will iterate over the properties of each  [object FileList] in the console
            var file = this.all[k];
            this._uploader(file,0);
        }
    }