tic tac toe-v javascript

hello

by tammasr

HTML

<html>
<table id="table">
<tr>
  <td id="cell1"></td>
  <td id="cell2"></td>
  <td id="cell3"></td>
</tr>
<tr>
  <td id="cell4"></td>
  <td id="cell5"></td>
  <td id="cell6"></td>
</tr>
<tr>
  <td id="cell7"></td>
  <td id="cell8"></td>
  <td id="cell9"></td>
</tr>
</table>
</html>

CSS

tr td{
  border: 1px solid black;
}
td {
  width: 50px;
  height: 50px;
  background-color: white;
}

JavaScript

document.getElementById('table').addEventListener('click', function (e) {
	e.target.innerHTML = "O";
  e.target.style.textAlign = "center";
  e.target.style.fontSize = "30px";
})