jQuery event.timeStamp check time between click event

Description

jQuery event.timeStamp check time between click event

View in separate window

<!DOCTYPE html>
<html>
<head>
<script 
 src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>/*from  w  ww .ja  v  a2s.  c o  m*/
<script>
$(document).ready(function(){
  var lastms, d;
  $("button").click(function(event){
    if (lastms){
      d = event.timeStamp - lastms
      $("p").text("Milliseconds since last click event: " + d);
    } else {
      $("p").text("Click the button again.");
    }
  lastms = event.timeStamp;
  });
});
</script>
</head>
<body>

<button>Click me</button>

<p></p>

</body>
</html>



PreviousNext

Related