domContentLoadedEventEnd
Summary
Returns the time immediately after the document’s DOMContentLoaded event completes.
Property of apis/navigation_timing/PerformanceTimingapis/navigation_timing/PerformanceTiming
Syntax
Note: This property is read-only.
var result = PerformanceTiming.domContentLoadedEventEnd;
Return Value
Returns an object of type unsigned longunsigned long
Examples
var perftime = performance.timing;
document.write("domContentLoadedEventEnd: " + perftime.domContentLoadedEventEnd + "<br />");
Notes
The value represents the number of milliseconds between midnight January 1, 1970 (UTC) and the recorded ending time.
Related specifications
- W3C Navigation Timing Specification 2
- W3C Working Draft
Attributions
Microsoft Developer Network: Windows Internet Explorer API reference Article