The Progress object is a JavaScript object with set of properties. All properties are read only. This object is returned as a parameter of onUploadProgress event handler.
Examples:
List of properties
Examples:
The Progress object is returned as a parameter of onUploadProgress event handler. The status information is displayed on the page:
function EAFlashUpload_onUploadProgress(progress) { var str = ""; for(var prop in progress) { str += prop + ": " + progress[prop] + "<br />"; } document.getElementById("DIV_ProgressSummary").innerHTML = str; document.getElementById("DIV_ProgressBar").style.width = progress.percentsDone + "%"; }