From 102d78ccd6a637822787304159902a6b0888e48f Mon Sep 17 00:00:00 2001 From: muktar1907 Date: Wed, 24 Apr 2024 02:28:56 -0500 Subject: [PATCH] mousemove --- html/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/index.html b/html/index.html index 8080815..2907262 100644 --- a/html/index.html +++ b/html/index.html @@ -225,6 +225,10 @@

The Word Search Game

{ buttonEvent(this.getAttribute("id"),1); }); + cells[i].addEventListener("mousemove",function() + { + this.style.backgroundColor="white"; + }); } } function buttonEvent(cell,action)