Files
static-site-hosting/test/script.js
T

8 lines
218 B
JavaScript
Raw Normal View History

2025-02-14 22:37:52 -05:00
document.addEventListener('DOMContentLoaded', function () {
const button = document.querySelector('#click-me');
if (button) {
button.addEventListener('click', function () {
alert('Button clicked!');
});
}
});