Projet_Web/Puissance4.js
Sahel Olivan 2f198a994c Sahel
2022-12-09 10:31:46 +01:00

8 lines
No EOL
287 B
JavaScript

const tbody = document.querySelector('#Board');
tbody.addEventListener('click', function (e) {
const cell = e.target.closest('td');
if (!cell) {return;} // Quit, not clicked on a cell
const row = cell.parentElement;
console.log(cell.innerHTML, row.rowIndex, cell.cellIndex);
});