How to add âPlease Waitâ after progress countdown?
The web video script Iâm using has an Upload form that works successfully. Upon selecting âUploadâ the page shows the Upload progress in % numbers up to 100%, then stays like this Upload Progress 100%" until the page redirects. I believe this is the line of code for the progress in % numbers:
request.upload.onprogress = function (event) {
callback('Upload Progress ' + Math.round(event.loaded / event.total * 100) + "%");
};
How can I display âPlease Waitâ after it displays âUpload Progress 100%â ?
Any help is appreciated.
|