responseEnd
Summary
Returns the time immediately after the user agent receives the last byte of the current document from the server, relevant application caches or from local resources, or immediately before the transport connection is closed, whichever comes first.
Property of apis/navigation timing/PerformanceTimingapis/navigation timing/PerformanceTiming
Syntax
Note: This property is read-only.
var result = PerformanceTiming.responseEnd;
Return Value
Returns an object of type unsigned longunsigned long
Examples
var perftime = performance.timing;
document.write("responseEnd: " + perftime.responseEnd + "<br />");
Related specifications
- Navigation Timing 2
- W3C Working Draft
Attributions
Microsoft Developer Network: Windows Internet Explorer API reference Article