input.addEventListener("change", function (evt) { for (var i=0, j=this.files.length; i'); }); xhr.upload.onprogress = function(e) { var done = e.position || e.loaded, total = e.totalSize || e.total; $("#" +this.id).attr('value', Math.floor((e.loaded / e.total) * 100) ) }; xhr.open('post', 'upload.php', true); xhr.send(formdata); } }, false);