How to store and reproduce jQuery events?



To store and reproduce jQuery events, use console to log.

Example

You can try to run the following code to learn how to store and reproduce jQuery events:

Live Demo

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    window.events = []
    $("#track").click(function(event){
       window.events.push(event)
   
       $.each(window.events, function(i, item){
          console.log(i, item);
       });
   });
});
</script>
</head>
<body>

<a href="#" id="track">Track</a>

</body>
</html>

Advertisements