This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The type
read-only property returns a string
representing the type of navigation. The value must be one of the following:
location.reload()
.This property is Read only .
perfEntry.type;
A string
which is one of the values listed above.
The following example illustrates this property's usage.
function print_nav_timing_data() { // Use getEntriesByType() to just get the "navigation" events var perfEntries = performance.getEntriesByType("navigation"); for (var i=0; i < perfEntries.length; i++) { console.log("= Navigation entry[" + i + "]"); var p = perfEntries[i]; // dom Properties console.log("DOM content loaded = " + (p.domContentLoadedEventEnd - p.domContentLoadedEventStart)); console.log("DOM complete = " + p.domComplete); console.log("DOM interactive = " + p.interactive); // document load and unload time console.log("document load = " + (p.loadEventEnd - p.loadEventStart)); console.log("document unload = " + (p.unloadEventEnd - p.unloadEventStart)); // other properties console.log("type = " + p.type); console.log("redirectCount = " + p.redirectCount); } }
Specification | Status | Comment |
---|---|---|
Navigation Timing Level 2 The definition of 'type' in that specification. | Editor's Draft | Initial definition. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support. | 57 | 58 (58) | No support | 44 | No support |
Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support. | 57 | 57 | 58.0 (58) | No support | 44 | No support |
© 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/PerformanceNavigationTiming/type