diff --git a/html/testBotScripts/tictactoe.html b/html/testBotScripts/tictactoe.html
index 2e1fc53..bd4d4ca 100644
--- a/html/testBotScripts/tictactoe.html
+++ b/html/testBotScripts/tictactoe.html
@@ -157,7 +157,7 @@ function startGame(){
var playerButton=createElem('input',{
'type': 'button',
'id':'button' + j + '-' + i,
- 'onclick':"playingAT('"j + '-' + i"');",'value':'-',
+ 'onclick':"playingAT('" + j + '-' + i + "');",'value':'-',
'class': 'hidden'}
);
td.appendChild(playerButton);