mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:12:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			547 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			547 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|     <head>
 | |
|     <script>
 | |
|         document.addEventListener("DOMContentLoaded", function() {
 | |
|             alert("It loaded!");
 | |
| 
 | |
|             document.getElementById("my_div").addEventListener("mousedown", function() {
 | |
|                 alert("Mouse down!");
 | |
|             });
 | |
|             document.getElementById("my_div").addEventListener("mousemove", function() {
 | |
|                 alert("Mouse move!");
 | |
|             });
 | |
|         });
 | |
|     </script>
 | |
|     </head>
 | |
|     <body>
 | |
|         <div id="my_div">Hello there!</div>
 | |
|     </body>
 | |
| </html>
 | 
