now correctly stores ellements

This commit is contained in:
AUnicornWithNoLife 2021-04-11 20:56:32 +01:00
parent 1cc661be2d
commit 341ee0eb54
2 changed files with 24 additions and 19 deletions

View File

@ -1,4 +1,8 @@
var board =
var board;
function load()
{
board =
[
[
[0, document.getElementById("id00")],
@ -16,6 +20,7 @@ var board =
[0, document.getElementById("id22")]
]
];
}
var ids =
{

View File

@ -11,7 +11,7 @@
<title>Tic Tac Toe</title>
</head>
<body>
<body onload="load();">
<table id='board'>
<tr>
<th><button onmousedown="move('00');" id='id00'></button></th>