This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

loadEventEnd

Summary

Returns the time when the load event of the current document is completed, or returns zero when the load event is not fired or is not completed.

Property of apis/navigation_timing/PerformanceTimingapis/navigation_timing/PerformanceTiming

Syntax

Note: This property is read-only.

var result = PerformanceTiming.loadEventEnd;

Return Value

Returns an object of type unsigned longunsigned long

Examples

var perftime = performance.timing;
document.write("loadEventEnd: " + perftime.loadEventEnd + "<br />");

Notes

The value reported represents the number of milliseconds between the recorded time and midnight January 1, 1970 (UTC).

Related specifications

W3C Navigation Timing 2
W3C Working Draft

Attributions