Execute only one function using self-invoking function in a for loop and exit

201 Views Asked by At

I want to implement a clicker by a user and by a computer randomly . I need to stop user click event after one cell is clicked .My random function is not executing .It is because left self-invoking functions are waiting to be clicked.You need to click only one cell(id) and continue executing random function .

for(var i=0;i<temp.length;i++){
   (function (index){
     if(!once) {
       $(temp[index]).click(function(e){
         if($(temp[index]).text()=="" && !once && turns%2==0){
            $(temp[index]).text(player1Val);
            console.log("first player clicked ");
            once = true;
            turns++;
            return;
         }
       });
     } //if
     else {
       console.log("break out ");
       return false;
     }
   })(i);
 }
 function generateRandom(){
    var temp = [];
    cnt++;
    for(var i=0;i<ids.length;i++){
      if($(ids[i]).text()==""){
        temp.push(ids[i]);
      }
    }
    var id = Math.floor(Math.random()*temp.length);
    if(temp.length>0 && turns%2==1){
      $(temp[id]).text(player2Val);
      turns++;
     }
     return id;

}

0

There are 0 best solutions below