domComplete property
The domComplete property must return the time immediately before the user agent sets the current document readiness to complete.
![]() |
Syntax
| JavaScript | |
|---|
Property values
Type: Integer
An Integer value that represents the time when the DOM is initialized or 0 if the document cannot be loaded.
Standards information
- Navigation Timing, Section 4.2
Remarks
The value of the domComplete property is controlled by the readyState property of the document object associated with the window object. The value of the domComplete property is updated when the readyState property is set to complete. If the document cannot be loaded, the value of the domComplete property is available after the onload event has finished executing.
The value reported by the domComplete property represents the number of milliseconds between the recorded time and midnight January 1, 1970 (UTC).
Windows Internet Explorer 9. This property is supported only for documents displayed in IE9 Standards mode. For more information, see Defining Document Compatibility.
Examples
The following example shows how to calculate the time required to initialize the DOM for the document.
var oTiming = window.performance.timing; var iLoadTimeMS = oTiming.domComplete - oTiming.domLoading;
See also
