Returns the time (in milliseconds) at which the event was created.
event.timeStamp
var number = event.timeStamp;
The following is a more complete example:
<html>
<head>
<title>timeStamp example</title>
<script type="text/javascript">
function getTime(event) {
document.getElementById("time").firstChild.nodeValue = event.timeStamp;
}
</script>
</head>
<body onkeypress="getTime(event)">
<p>Press any key to get the current timestamp
for the onkeypress event.</p>
<p>timeStamp: <span id="time">-</span></p>
</body>
</html>
This property only works if the event system supports it for the particular event.
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Event.timeStamp' in that specification. | Living Standard | |
| DOM4 The definition of 'Event.timeStamp' in that specification. | Recommendation | |
| Document Object Model (DOM) Level 2 Events Specification The definition of 'Event.timeStamp' in that specification. | Recommendation | Initial definition. |
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|---|
| Basic support | 49.0[1] | (Yes) | ? | ? | ? | ? |
| Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
|---|---|---|---|---|---|---|---|---|---|
| Basic support | No support | 49.0[1] | (Yes) | ? | ? | ? | ? | ? | 49.0 |
[1] Starting with Chrome 49, returns a high-resolution monotonic time instead of epoch time.
© 2005–2017 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/Event/timeStamp