W3cubDocs

/DOM

Navigation timing API

The Navigation Timing API provides data that can be used to measure the performance of a web site. Unlike JavaScript-based libraries that have historically been used to collect similar information, the Navigation Timing API can be much more accurate and reliable.

This article currently describes Navigation Timing Level 1. There is a specification for Level 2, but it is not yet covered here.

Concepts and usage

You can use the Navigation Timing API to gather performance data on the client side which you can then transmit to a server using XMLHttpRequest or other techniques. Also, the API lets you measure data that was previously difficult to obtain, such as the amount of time needed to unload the previous page, how long domain lookups take, the total time spent executing the window's load handler, and so forth.

Interfaces

Performance
The window.performance property returns a Performance object. While this interface is defined by the High Resolution Time API, the Navigation Timing API adds two properties: timing and navigation, of the types below.
PerformanceNavigationTiming
Provides methods and properties to store and retrieve metrics regarding the browser's document navigation events. For example, this interface can be used to determine how much time it takes to load or unload a document.
PerformanceTiming
Used as the type for the value of timing, objects of this type contain timing information that can provide insight into web page performance.
PerformanceNavigation
The type used to return the value of navigation, which contains information explaining the context of the load operation described by this Performance instance.

The Navigation Timing API can be used to gather performance data on the client side to be sent to a server via XHR as well as measure data that was very difficult to measure by other means such as time to unload a previous page, domain look up time, window.onload total time, etc.

Examples

Calculate the total page load time

To compute the total amount of time it took to load the page, you can use the following code:

var perfData = window.performance.timing; 
var pageLoadTime = perfData.loadEventEnd - perfData.navigationStart;

This subtracts the time at which navigation began (navigationStart) from the time at which the load event handler returns (loadEventEnd). This gives you the perceived page load time.

Calculate request response time

You can calculate the time elapsed between the beginning of a request and the completion of getting the response using code like this:

var connectTime = perfData.responseEnd - perfData.requestStart;

Here, the time at which the request was initiated (requestStart). from the time at which the response was finished being received (responseEnd).

Calculate page render time

As another example of an interesting piece of data you can obtain using the Navigation Timing API that you can't otherwise easily get, you can get the amount of time it took to render the page:

var renderTime = perfData.domComplete - perfData.domLoading;

This is obtained by starting with the time at which loading of the DOM and its dependencies is complete (domComplete) and subtracting from it the time at which parsing of the DOM began (domLoading).

Specifications

Specification Status Comment
Navigation Timing Level 2 Working Draft Adds PerformanceNavigationTiming
Navigation Timing Recommendation Initial definition.

Browser compatibilityUpdate compatibility data on GitHub

Window.performance.timing

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 6 12 7 9 15 8
connectEnd 6 Yes 7 9 15 No
connectStart 6 Yes 7 9 15 No
domComplete 6 Yes 7 9 15 No
domContentLoadedEventEnd 6 Yes 7 9 15 8
domContentLoadedEventStart 6 Yes 7 9 15 No
domInteractive 6 Yes 7 9 15 No
domLoading 6 Yes 7 9 15 No
domainLookupEnd 6 Yes 7 9 15 No
domainLookupStart 6 Yes 7 9 15 No
fetchStart 6 Yes 7 9 15 Yes
loadEventEnd 6 Yes 7 9 15 No
loadEventStart 6 Yes 7 9 15 No
navigationStart 6 Yes 7 9 15 Yes
redirectEnd 6 Yes 7 9 15 No
redirectStart 6 Yes 7 9 15 No
requestStart 6 Yes 7 9 15 No
responseEnd 6 Yes 7 9 15 No
responseStart 6 Yes 7 9 15 No
secureConnectionStart 6 18 56 9 15 No
toJSON 44 Yes 25 9 32 Yes
unloadEventEnd 6 Yes 7 9 15 No
unloadEventStart 6 Yes 7 9 15 No
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support Yes Yes Yes 7 15 9.2 ?
connectEnd Yes Yes Yes 7 15 No ?
connectStart Yes Yes Yes 7 15 No ?
domComplete Yes Yes Yes 7 15 No ?
domContentLoadedEventEnd Yes Yes Yes 7 15 9.2 ?
domContentLoadedEventStart Yes Yes Yes 7 15 No ?
domInteractive Yes Yes Yes 7 15 No ?
domLoading Yes Yes Yes 7 15 No ?
domainLookupEnd Yes Yes Yes 7 15 No ?
domainLookupStart Yes Yes Yes 7 15 No ?
fetchStart Yes Yes Yes 7 15 Yes ?
loadEventEnd Yes Yes Yes 7 15 No ?
loadEventStart Yes Yes Yes 7 15 No ?
navigationStart Yes Yes Yes 7 15 Yes ?
redirectEnd Yes Yes Yes 7 15 No ?
redirectStart Yes Yes Yes 7 15 No ?
requestStart Yes Yes Yes 7 15 No ?
responseEnd Yes Yes Yes 7 15 No ?
responseStart Yes Yes Yes 7 15 No ?
secureConnectionStart Yes Yes ? 56 15 No ?
toJSON 44 44 Yes 25 32 Yes ?
unloadEventEnd Yes Yes Yes 7 15 No ?
unloadEventStart Yes Yes Yes 7 15 No ?

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Navigation_timing_API