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.

I have some click function... whole action is fine but if i fastly doubleclick at call button some elements generates two times. Can you tell me how to stop function propagation after first click? Much thx for help, and this is my code:

$('#start_panel ul li').click(function(event){
    if($(this).hasClass('eng')){
       ...
    }
    else if($(this).hasClass('ger')){
       ...
    }
    else if($(this).hasClass('pln')){
       ...
    }
    event.stopPropagation();
});
share|improve this question
If not .one() pass closure to click that maintains the nr of clicks – Jack Sep 4 '12 at 11:57
If you use on() to bind the click, you can also use off() to unbind it until the function completes. – adeneo Sep 4 '12 at 12:01
so, why i'v got a down vote? i'm asking for the future... – djlukas777 Sep 4 '12 at 12:09

5 Answers

up vote 2 down vote accepted
var clicked = false;
$('#start_panel ul li').click(function(event){
   if (clicked) return;
   clicked = true;

Or use the one function (slightly different : now only one click per li element will be handled) :

 $('#start_panel ul li').one('click', function(event){
share|improve this answer
1  
+1 finally an answer that actually addresses the problem properly. – Jack Sep 4 '12 at 12:04
the .one() option helps. but if i have a .live('click',... ? – djlukas777 Sep 4 '12 at 12:04
one can replace live too. See the doc. – dystroy Sep 4 '12 at 12:05
@Jack "finally" ? This was the first answer. – dystroy Sep 4 '12 at 12:05
@dystroy couldn't tell because the answers of same score are not sorted on anything :) – Jack Sep 4 '12 at 12:06
show 3 more comments

Try this instead:

var myClicker = function(event){
    var self = event.currentTarget;
    if($(self).hasClass('eng')){
       ...
    }
    else if($(self).hasClass('ger')){
       ...
    }
    else if($(self).hasClass('pln')){
       ...
    }
    $(self).one('click', myClicker);
});
$('#start_panel ul li').one('click', myClicker);
share|improve this answer
 var i=0;
$('#start_panel ul li').click(function(event){
 if(i==1){
  i=0;
 return false;
  }
if($(this).hasClass('eng')){
   ...
}
else if($(this).hasClass('ger')){
   ...
}
else if($(this).hasClass('pln')){
   ...
}
 i++;


 });
share|improve this answer

To clear previous request use Stop(true,true)

$('#start_panel ul li').stop(true,true).click(function(event){
    if($(this).hasClass('eng')){
        ...
    }
    else if($(this).hasClass('ger')){
       ...
    }
    else if($(this).hasClass('pln')){
       ...
    }
    event.stopPropagation();
});
share|improve this answer
Are you sure stop() is'nt really for the $.fx animation queue ? – adeneo Sep 4 '12 at 12:00

You can unbind the click event after the first click:

$('#start_panel ul li').click(function(event){
    $(this).unbind('click'); 
    if($(this).hasClass('eng')){
       ...
    }
    else if($(this).hasClass('ger')){
       ...
    }
    else if($(this).hasClass('pln')){
       ...
    }
    event.stopPropagation();
});
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.