ProgressEvent()
The ProgressEvent() constructor returns a newly created ProgressEvent, representing the current completion of a long process.
Syntax
progressEvent = new ProgressEvent(type, {lengthComputable: aBooleanValue, loaded: aNumber, total: aNumber});
Arguments
The ProgressEvent() constructor also inherits arguments from Event().
- type
-
Is a
DOMStringrepresenting the name of the type of theProgressEvent. It is case-sensitive. -
lengthComputableOptional -
Is a boolean flag indicating if the total work to be done, and the amount of work already done, by the underlying process is calculable. In other words, it tells if the progress is measurable or not. It defaults to
false. -
loadedOptional -
Is an
unsigned long longrepresenting the amount of work already performed by the underlying process. The ratio of work done can be calculated with the property andProgressEvent.total. When downloading a resource using HTTP, this only represent the part of the content itself, not headers and other overhead. It defaults to0. -
totalOptional -
Is an
unsigned long longrepresenting the total amount of work that the underlying process is in the progress of performing. When downloading a resource using HTTP, this only represent the content itself, not headers and other overhead. It defaults to0.
Specifications
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
ProgressEvent |
16 |
14 |
22 |
No |
15 |
6 |
≤37 |
18 |
22 |
14 |
6 |
1.0 |
See also
- The
ProgressEventinterface it belongs to.
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/ProgressEvent