event.timeStamp
The event.timeStamp
property in jQuery refers to the timestamp when the event is triggered.
event.timeStamp
property ExampleDisplay the time since the click event triggered.
$("button").click(function(event){ $('#log').append('<p>The timestamp is: '+ event.timeStamp +'</p>'); });