mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			475 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			475 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
| </head>
 | |
| <body>
 | |
| <div id=clicky style="background-color: red; color: white; border: 1px solid black;">Click me</div>
 | |
| <div id="foo">This has <b>some HTML</b> inside it!</div>
 | |
| <script type="text/javascript">
 | |
| function hax() {
 | |
|     var foo = document.getElementById("foo");
 | |
|     console.log("trying");
 | |
|     foo.innerHTML = 'But now the HTML has changed!';
 | |
| }
 | |
| document.getElementById("clicky").addEventListener("mousedown", hax);
 | |
| </script>
 | |
| </body>
 | |
| </html>
 | 
