Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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:
<!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
