timing
Summary
Represents the timing information related to the browsing contexts since the last non-redirect navigation. This attribute is defined by the PerformanceTiming interface.
Property of apis/navigation_timing/Performanceapis/navigation_timing/Performance
Syntax
Note: This property is read-only.
var result = Performance.timing;
Return Value
Returns an object of type ObjectObject
Examples
var perftim = performance.timing;
alert(perftim); // "[object PerformanceTiming]"
Notes
Use the performance property of the window object to get the host for this object.
Related specifications
- W3C Navigation Timing Specification
- W3C Recommendation
Attributions
Microsoft Developer Network: Windows Internet Explorer API reference Article