Red Kipling wrote:
upload a files in my website I have this javascript code integrated to show the progress of upload But the issue is that this bar has value of 100% before the upload is completed How can i resolve this
See what happens if you replace this code:
xhr.upload.onprogress = function (event) {
//code
};
...with this
xhr.upload.addEventListener("progress", function (event) {
//code
});
Although your code is correct, try using the addEventListener method to see if that makes any difference. I believe that event listeners need to be assigned before the xhr's "open" method is called.