mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			357 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			357 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
|     <input id=foo type=checkbox>
 | |
|     <label for=foo>This is a checkbox</label>
 | |
|     <pre id=bar></pre>
 | |
|     <script>
 | |
|         var foo = document.getElementById("foo");
 | |
|         var bar = document.getElementById("bar");
 | |
|         foo.addEventListener("change", function() {
 | |
|             bar.innerHTML += foo.checked + "\n";
 | |
|         });
 | |
|     </script>
 | |
| </html>
 | 
