From 2d18d76e9a0f081a760e3a00e46659d793ceebd6 Mon Sep 17 00:00:00 2001 From: AlmightyMiau Date: Thu, 5 Jun 2025 15:46:50 -0700 Subject: CBox chat box on the aside 6/5/2025 --- cats.html | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'cats.html') diff --git a/cats.html b/cats.html index 0d4d353..84a0618 100644 --- a/cats.html +++ b/cats.html @@ -27,6 +27,14 @@ document.getElementById("buttons").style.display = "none"; } } + function hideChat() { + let status = document.getElementById("chatbox").style.display; + if (status === "none") { + document.getElementById("chatbox").style.display = "block"; + } else { + document.getElementById("chatbox").style.display = "none"; + } + } @@ -45,7 +53,7 @@ -- cgit v1.2.3