SummaryEdit
Returns the time (in milliseconds) at which the event was created. Starting with Chrome 49, returns a high-resolution monotonic time instead of epoch time.
SyntaxEdit
event.timeStamp
ExamplesEdit
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>
NotesEdit
This property only works if the event system supports it for the particular event.
SpecificationsEdit
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Event.timeStamp' in that specification. |
Living Standard | |
DOM4 The definition of 'Event.timeStamp' in that specification. |
Working Draft | |
Document Object Model (DOM) Level 2 Events Specification The definition of 'Event.timeStamp' in that specification. |
Recommendation | Initial definition. |