blob: 9c65d2248377897cc3dd5e51be3f7c4308b537d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
document.addEventListener("DOMContentLoaded", function () {
console.log("✅ main.js loaded");
const heading = document.querySelector("h1");
if (heading) {
heading.style.cursor = "pointer";
heading.addEventListener("click", () => {
alert("You clicked the heading!");
});
}
});
|