is someone who can help with my tic tac toe game (javascript) ? i really need help i'm stuck | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

is someone who can help with my tic tac toe game (javascript) ? i really need help i'm stuck

i want to add a red color in the winning box and to display a score game using a span which will be updated each time a player wins a game, and also to display a popup message if a player has won. THIS is my code: https://code.sololearn.com/WhfNOgyur7gw/#html

4th Apr 2020, 5:50 PM
Isaac Lokoto Shokombala
4 Answers
+ 1
word limit exceed Show your code here using code playground. https://www.sololearn.com/post/75089/?ref=app
4th Apr 2020, 5:56 PM
Gordon
Gordon - avatar
+ 1
thank you
4th Apr 2020, 6:02 PM
Isaac Lokoto Shokombala
+ 1
A. Popup with alert Display result with innerText B. 1. in HTML, add <p> <span>X :</span> <span id="XScore">0</span> <span>;</span> <span>O :</span> <span id="OScore">0</span> </p> 2. In JavaScript, 2.1 add a global object var counter = { "X" : 0, "O" : 0, }; 2.2 Then in checkForWinner() add alert( move + " wins!"); document.getElementById(move + "Score").innerText = ++counter[move]; C. an edit as demo: https://code.sololearn.com/WXW6KC32MzJ3/?ref=app
4th Apr 2020, 6:11 PM
Gordon
Gordon - avatar
0
Thank you so much it's working perfectly
4th Apr 2020, 6:34 PM
Isaac Lokoto Shokombala