loadEventStart
Summary
Returns the time immediately before the load event of the current document is fired, or returns zero when the load event is not fired yet.
Property of apis/navigation timing/PerformanceTimingapis/navigation timing/PerformanceTiming
Syntax
Note: This property is read-only.
var result = PerformanceTiming.loadEventStart;
Return Value
Returns an object of type unsigned longunsigned long
Examples
var perftime = performance.timing;
document.write("loadEventStart: " + perftime.loadEventStart + "<br />");
Notes
The value reported represents the number of milliseconds between the recorded time and midnight January 1, 1970 (UTC).
Related specifications
- Navigation Timing 2
- W3C Working Draft
Attributions
Microsoft Developer Network: Windows Internet Explorer API reference Article