Projet_Web/Puissance4.js
Sahel Olivan 0efd5b1755 Sahel
2022-12-09 10:50:46 +01:00

17 lines
390 B
JavaScript

var currentRow = 0;
var currentColumn = 0;
const tbody = document.querySelector('#Board');
tbody.addEventListener('click', function (e){
const cell = e.target.closest('td');
if (!cell) {return;}
const row = cell.parentElement;
currentRow = row.rowIndex;
currentColumn = cell.cellIndex;
test();
});
function test(){
console.log(currentRow, currentColumn);
}