mirror of
https://github.com/ION606/static-site-hosting.git
synced 2026-05-14 22:16:54 +00:00
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
|
|
document.addEventListener('DOMContentLoaded', function () {
|
||
|
|
const button = document.querySelector('#click-me');
|
||
|
|
if (button) {
|
||
|
|
button.addEventListener('click', function () {
|
||
|
|
alert('Button clicked!');
|
||
|
|
});
|
||
|
|
}
|
||
|
|
});
|