Files
static-site-hosting/test/script.js
T
2025-02-14 22:37:52 -05:00

8 lines
218 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
const button = document.querySelector('#click-me');
if (button) {
button.addEventListener('click', function () {
alert('Button clicked!');
});
}
});