Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hello i have some question , how to block click function if a #health is clicked

when click function is runned i can click again but how block 2 click.

$('#health').click(function() {
  var count = <?=$wait_time?>;
  countdown = setInterval(function(){
    $("p#health").html(count + " seconds remaining!");
    if (count == 0) {
      $.ajax({
       url: 'pages/map/hospital.php?heal=1',
       success: function(data) {
        $("p#health").hide();
       }
      });
    }
    count--;
  }, 1000);
});
share|improve this question

3 Answers

up vote 1 down vote accepted

Use the .one() method instead of .click():

$('#health').one('click', function() {
    //etc
});

To clear the interval, simply use the clearInterval() method:

clearInterval(countdown);
share|improve this answer
thanks work fine :) , and how stop countdown if count = 0 ? – fees Sep 16 '12 at 1:17
@user1608442 I've updated my answer. Also, if this answer is satisfactory, please accept it by clicking the outlined checkmark below the down arrow. – Daedalus Sep 16 '12 at 1:21
var state = true;
$(document).click(function() {
    if (state === true) {
        var count = < ? = $wait_time ? > ;
        countdown = setInterval(function() {
            $("p#health").html(count + " seconds remaining!");
            if (count == 0) {
                $.ajax({
                    url: 'pages/map/hospital.php?heal=1',
                    success: function(data) {
                        $("p#health").hide();
                    }
                });
            }
            count--;
        }, 1000);

        state = false;
    }
});
share|improve this answer

If you'd like to block subsequent clicks from doing anything, try this:

$('#health').click(function() {
  if(countdown)
    return false;

  var count = <?=$wait_time?>;
  countdown = setInterval(function(){
    $("p#health").html(count + " seconds remaining!");
    if (count == 0) {
      $.ajax({
       url: 'pages/map/hospital.php?heal=1',
       success: function(data) {
        $("p#health").hide();
       }
      });
    }
    count--;
  }, 1000);
});
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.