From b867b82b8332cd799819026f5e4fcb5402801ef9 Mon Sep 17 00:00:00 2001 From: Ted Pier Date: Sun, 3 Aug 2025 16:05:32 -0700 Subject: [PATCH] contact section --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index a1930e8..38634b0 100644 --- a/script.js +++ b/script.js @@ -4,6 +4,6 @@ $("contact-info-container").addEventListener("click", () => { fetch("contact-info.obfuscated") .then((response) => response.text()) .then((text) => { - id("contact-info-container").innerHTML = atob(text); + $("contact-info-container").innerHTML = atob(text); }); });