Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.1 kB
3
Indexable
Never
// Function to handle a cell click
    function handleCellClick(cell) {
        // ... existing handleCellClick logic ...
    }

    // Event handler for cell clicks
    $("#board td").click(function() {
        handleCellClick($(this));
    });

    // Event handler for X button click
    $("#xButton").click(function() {
        if (!gameActive) {
            currentPlayer = "X";
            $("#message").text("Current Player: " + currentPlayer);
            gameActive = true;
            $("#board td").text("").removeClass("winning");
        }
    });

    // Event handler for O button click
    $("#oButton").click(function() {
        if (!gameActive) {
            currentPlayer = "O";
            $("#message").text("Current Player: " + currentPlayer);
            gameActive = true;
            $("#board td").text("").removeClass("winning");
        }
    });

    // Event handler for Reset button click
    $("#resetButton").click(function() {
        currentPlayer = "";
        gameActive = false;
        $("#message").text("Select X or O to start");
        $("#board td").text("").removeClass("winning");
    });
});