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.

connectEnd

Summary

Returns the time immediately after the user agent finishes establishing the connection to the server to retrieve the current document.

Property of apis/navigation_timing/PerformanceTimingapis/navigation_timing/PerformanceTiming

Syntax

Note: This property is read-only.

var result = PerformanceTiming.connectEnd;

Return Value

Returns an object of type unsigned longunsigned long

Examples

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

Related specifications

W3C Navigation Timing Specification 2
W3C Working Draft

Attributions