79083241

Date: 2024-10-13 13:31:02
Score: 0.5
Natty:
Report link

This worked in the end:

document.addEventListener("click", function(event) {
    // Check which element was clicked using event.target
    if (event.target.matches("#about")) {
        window.location.href = "about_me.html";
    } else if (event.target.matches("#contact")) {
        window.location.href = "contact_me.html";
    } else if (event.target.matches("#home")) {
        window.location.href = "home.html"
    }
});
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: SolidOpt