Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm coding a Tic-tac-toe game but the code which I'm using to check whether the user is clicking on an empty square or an already filled one is not working for me. Please find my mistake.

function startgame(){
    var $board=$('#board');
    $('div.square').remove();

    for(var i=0;i<9;i++)
        $board.append($('<div/>').addClass('square').addClass('empty'));

    $('div.square.empty').click(function(){
        $this=$(this);

        if($('div.square.empty').length==0){

            displayendmsg();
        }
        else {
            $this.removeClass('empty');

            if(currentplayer=="X")
                $this.append($('<div><img src="cross.jpg">        </div>').addClass('cross').css('visibility','visible'));
            else
                $this.append($('<div><img src="circle.jpg">  </div>').addClass('circle').css('visibility','visible'));

            flipturn();
        }


    });
};

Even when clicking on an already occupied square I enter the handler, and I don't know why.

share|improve this question
1  
Fyi, you should really use var $this = $(this); - without the var keyword you create a global which is almost always not what you want and sometimes (usually when it happens for loop variables) a great way to introduce hard-to-find bugs. – ThiefMaster Dec 22 '12 at 11:37
Since this is probably a learning project I'll recommend that you try to do this without changing classes or having jQuery make any "decisions" for you. Ideally you have a game engine that is separate from the visual representation and interface, all you tell the game engine is that a certain tile has been clicked, and then it should itself decide if that is a legal action. It may not seem like a big advantage now, but for something more complicated you'll end up with an unmaintainable kludge coding the way you do now. – eBusiness Dec 22 '12 at 11:55

migrated from gamedev.stackexchange.com Dec 24 '12 at 20:11

2 Answers

.click() attaches an event handler on call time to all elements that match the selector. Even if the elements don't match the selector later on, the event handler will still be there.

Instead, use .on() to check if the selector still applies for your event handler at the moment it is triggered:

$(document).on("click", "div.square.empty", function(){ alert("Clicked an empty square!"); });
share|improve this answer
Please.. read the docs! .on('click', func) in the way you use it does exactly the same as .click(func) or .bind('click', func) – ThiefMaster Dec 22 '12 at 11:35
Oops, excusez-moi. Used .live() first, but then I saw it was deprecated, hence I updated to .on() but got the syntax not quite right. Fixed it now per the docs. Thanks. – Eric Dec 23 '12 at 11:08
No need for a document-wide delegate. The handler is bound after the squares are created so $('div.square').on('click', '.empty', ...); does the job. – ThiefMaster Dec 23 '12 at 12:43
1  
@ThiefMaster Feel free to edit (or suggest an edit) to improve an answer. – Eric Dec 23 '12 at 21:04

Your problem is that you bind the event handler only for the elements that match the selector at the time where you call the .click(..) function. However, you want to bind it on all elements but only trigger the function if the element has the correct class.

You can do this by using a delegate. In recent jQuery versions you do this using the .on() method:

$('div.square').on('click', '.empty', function() {
    // your code here
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.