mirror of
https://github.com/opus-tango/http-server-in-c.git
synced 2026-03-20 03:55:25 +00:00
5 lines
175 B
JavaScript
5 lines
175 B
JavaScript
const button = document.createElement('button');
|
|
button.textContent = 'Click me!';
|
|
button.onclick = () => alert('You clicked the button!');
|
|
document.body.appendChild(button);
|